Deleted Added
sdiff udiff text old ( 9525:0587c8983d47 ) new ( 10701:aaa0f985da8e )
full compact
1/*
2 * Copyright (c) 2012 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 25 unchanged lines hidden (view full) ---

34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 *
37 * Authors: Andreas Sandberg
38 */
39
40#include "dev/arm/base_gic.hh"
41
42#include "params/BaseGic.hh"
43
44BaseGic::BaseGic(const Params *p)
45 : PioDevice(p),
46 platform(p->platform)
47{
48}
49
50BaseGic::~BaseGic()
51{
52}
53
54const BaseGic::Params *
55BaseGic::params() const
56{
57 return dynamic_cast<const Params *>(_params);
58}