diff options
Diffstat (limited to 'src/dev/x86/cmos.hh')
-rw-r--r-- | src/dev/x86/cmos.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dev/x86/cmos.hh b/src/dev/x86/cmos.hh index 45fb9e8f2..76276dbc1 100644 --- a/src/dev/x86/cmos.hh +++ b/src/dev/x86/cmos.hh @@ -38,7 +38,7 @@ namespace X86ISA { -class IntPin; +class IntSourcePin; class Cmos : public BasicPioDevice { @@ -57,10 +57,10 @@ class Cmos : public BasicPioDevice class X86RTC : public MC146818 { protected: - IntPin * intPin; + IntSourcePin * intPin; public: X86RTC(EventManager *em, const std::string &n, const struct tm time, - bool bcd, Tick frequency, IntPin * _intPin) : + bool bcd, Tick frequency, IntSourcePin * _intPin) : MC146818(em, n, time, bcd, frequency), intPin(_intPin) { } |