diff options
| -rw-r--r-- | arch/mips/sgi-ip32/ip32-platform.c | 16 | ||||
| -rw-r--r-- | arch/mips/sgi-ip32/ip32-setup.c | 5 |
2 files changed, 16 insertions, 5 deletions
diff --git a/arch/mips/sgi-ip32/ip32-platform.c b/arch/mips/sgi-ip32/ip32-platform.c index 3d63721e0e80..511e9ff2acfd 100644 --- a/arch/mips/sgi-ip32/ip32-platform.c +++ b/arch/mips/sgi-ip32/ip32-platform.c | |||
| @@ -90,6 +90,22 @@ static __init int sgio2btns_devinit(void) | |||
| 90 | 90 | ||
| 91 | device_initcall(sgio2btns_devinit); | 91 | device_initcall(sgio2btns_devinit); |
| 92 | 92 | ||
| 93 | static struct resource sgio2_cmos_rsrc[] = { | ||
| 94 | { | ||
| 95 | .start = 0x70, | ||
| 96 | .end = 0x71, | ||
| 97 | .flags = IORESOURCE_IO | ||
| 98 | } | ||
| 99 | }; | ||
| 100 | |||
| 101 | static __init int sgio2_cmos_devinit(void) | ||
| 102 | { | ||
| 103 | return IS_ERR(platform_device_register_simple("rtc_cmos", -1, | ||
| 104 | sgio2_cmos_rsrc, 1)); | ||
| 105 | } | ||
| 106 | |||
| 107 | device_initcall(sgio2_cmos_devinit); | ||
| 108 | |||
| 93 | MODULE_AUTHOR("Ralf Baechle <ralf@linux-mips.org>"); | 109 | MODULE_AUTHOR("Ralf Baechle <ralf@linux-mips.org>"); |
| 94 | MODULE_LICENSE("GPL"); | 110 | MODULE_LICENSE("GPL"); |
| 95 | MODULE_DESCRIPTION("8250 UART probe driver for SGI IP32 aka O2"); | 111 | MODULE_DESCRIPTION("8250 UART probe driver for SGI IP32 aka O2"); |
diff --git a/arch/mips/sgi-ip32/ip32-setup.c b/arch/mips/sgi-ip32/ip32-setup.c index 1024bf40bd9e..c5a5d4a31b4b 100644 --- a/arch/mips/sgi-ip32/ip32-setup.c +++ b/arch/mips/sgi-ip32/ip32-setup.c | |||
| @@ -62,11 +62,6 @@ static inline void str2eaddr(unsigned char *ea, unsigned char *str) | |||
| 62 | } | 62 | } |
| 63 | #endif | 63 | #endif |
| 64 | 64 | ||
| 65 | unsigned long read_persistent_clock(void) | ||
| 66 | { | ||
| 67 | return mc146818_get_cmos_time(); | ||
| 68 | } | ||
| 69 | |||
| 70 | /* An arbitrary time; this can be decreased if reliability looks good */ | 65 | /* An arbitrary time; this can be decreased if reliability looks good */ |
| 71 | #define WAIT_MS 10 | 66 | #define WAIT_MS 10 |
| 72 | 67 | ||
