diff options
Diffstat (limited to 'src/dev/x86/cmos.hh')
-rw-r--r-- | src/dev/x86/cmos.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dev/x86/cmos.hh b/src/dev/x86/cmos.hh index 2f662070d..b4ab8e796 100644 --- a/src/dev/x86/cmos.hh +++ b/src/dev/x86/cmos.hh @@ -56,14 +56,14 @@ class Cmos : public BasicPioDevice class X86RTC : public MC146818 { public: - std::vector<::IntSourcePin<X86RTC> *> intPin; + std::vector<IntSourcePin<X86RTC> *> intPin; X86RTC(EventManager *em, const std::string &n, const struct tm time, bool bcd, Tick frequency, int int_pin_count) : MC146818(em, n, time, bcd, frequency) { for (int i = 0; i < int_pin_count; i++) { - intPin.push_back(new ::IntSourcePin<X86RTC>( + intPin.push_back(new IntSourcePin<X86RTC>( csprintf("%s.int_pin[%d]", n, i), i, this)); } } |