Deleted Added
sdiff udiff text old ( 13767:85278a98657c ) new ( 13784:1941dc118243 )
full compact
1/*
2 * Copyright (c) 2007 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

32 * @file
33 * Base Ethernet Device declaration.
34 */
35
36#ifndef __DEV_NET_ETHERDEVICE_HH__
37#define __DEV_NET_ETHERDEVICE_HH__
38
39#include "base/statistics.hh"
40#include "dev/net/etherobject.hh"
41#include "dev/pci/device.hh"
42#include "params/EtherDevBase.hh"
43#include "params/EtherDevice.hh"
44#include "sim/sim_object.hh"
45
46class EtherInt;
47
48class EtherDevice : public PciDevice, public EtherObject
49{
50 public:
51 typedef EtherDeviceParams Params;
52 EtherDevice(const Params *params)
53 : PciDevice(params)
54 {}
55
56 const Params *

--- 87 unchanged lines hidden ---