Commit 4bdebe5b authored by Ralf Baechle's avatar Ralf Baechle

CHAR: Delete old and now unused DS1286 driver.

It was only used by two SGI platforms which recently were converted to
RTC_LIB and with RTC_LIB enabled the legacy drivers are no more selectable.
Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
Signed-off-by: default avatarYoichi Yuasa <yoichi_yuasa@tripeaks.co.jp>
parent cea7e2df
...@@ -327,7 +327,6 @@ config SGI_IP22 ...@@ -327,7 +327,6 @@ config SGI_IP22
select IP22_CPU_SCACHE select IP22_CPU_SCACHE
select IRQ_CPU select IRQ_CPU
select GENERIC_ISA_DMA_SUPPORT_BROKEN select GENERIC_ISA_DMA_SUPPORT_BROKEN
select SGI_HAS_DS1286
select SGI_HAS_I8042 select SGI_HAS_I8042
select SGI_HAS_INDYDOG select SGI_HAS_INDYDOG
select SGI_HAS_HAL2 select SGI_HAS_HAL2
...@@ -382,7 +381,6 @@ config SGI_IP28 ...@@ -382,7 +381,6 @@ config SGI_IP28
select HW_HAS_EISA select HW_HAS_EISA
select I8253 select I8253
select I8259 select I8259
select SGI_HAS_DS1286
select SGI_HAS_I8042 select SGI_HAS_I8042
select SGI_HAS_INDYDOG select SGI_HAS_INDYDOG
select SGI_HAS_HAL2 select SGI_HAS_HAL2
...@@ -893,9 +891,6 @@ config EMMA2RH ...@@ -893,9 +891,6 @@ config EMMA2RH
config SERIAL_RM9000 config SERIAL_RM9000
bool bool
config SGI_HAS_DS1286
bool
config SGI_HAS_INDYDOG config SGI_HAS_INDYDOG
bool bool
......
...@@ -771,7 +771,6 @@ CONFIG_WATCHDOG=y ...@@ -771,7 +771,6 @@ CONFIG_WATCHDOG=y
CONFIG_INDYDOG=m CONFIG_INDYDOG=m
# CONFIG_HW_RANDOM is not set # CONFIG_HW_RANDOM is not set
# CONFIG_RTC is not set # CONFIG_RTC is not set
CONFIG_SGI_DS1286=m
# CONFIG_R3964 is not set # CONFIG_R3964 is not set
CONFIG_RAW_DRIVER=m CONFIG_RAW_DRIVER=m
CONFIG_MAX_RAW_DEVS=256 CONFIG_MAX_RAW_DEVS=256
......
...@@ -70,7 +70,6 @@ CONFIG_CPU_BIG_ENDIAN=y ...@@ -70,7 +70,6 @@ CONFIG_CPU_BIG_ENDIAN=y
CONFIG_SYS_SUPPORTS_BIG_ENDIAN=y CONFIG_SYS_SUPPORTS_BIG_ENDIAN=y
CONFIG_IRQ_CPU=y CONFIG_IRQ_CPU=y
CONFIG_SWAP_IO_SPACE=y CONFIG_SWAP_IO_SPACE=y
CONFIG_SGI_HAS_DS1286=y
CONFIG_SGI_HAS_INDYDOG=y CONFIG_SGI_HAS_INDYDOG=y
CONFIG_SGI_HAS_SEEQ=y CONFIG_SGI_HAS_SEEQ=y
CONFIG_SGI_HAS_WD93=y CONFIG_SGI_HAS_WD93=y
...@@ -585,7 +584,6 @@ CONFIG_LEGACY_PTY_COUNT=256 ...@@ -585,7 +584,6 @@ CONFIG_LEGACY_PTY_COUNT=256
# CONFIG_IPMI_HANDLER is not set # CONFIG_IPMI_HANDLER is not set
# CONFIG_HW_RANDOM is not set # CONFIG_HW_RANDOM is not set
# CONFIG_RTC is not set # CONFIG_RTC is not set
CONFIG_SGI_DS1286=y
# CONFIG_DTLK is not set # CONFIG_DTLK is not set
# CONFIG_R3964 is not set # CONFIG_R3964 is not set
# CONFIG_RAW_DRIVER is not set # CONFIG_RAW_DRIVER is not set
......
/*
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file "COPYING" in the main directory of this archive
* for more details.
*
* Machine dependent access functions for RTC registers.
*
* Copyright (C) 2003 Ralf Baechle (ralf@linux-mips.org)
*/
#ifndef _ASM_DS1286_H
#define _ASM_DS1286_H
#include <ds1286.h>
#endif /* _ASM_DS1286_H */
...@@ -812,17 +812,6 @@ config JS_RTC ...@@ -812,17 +812,6 @@ config JS_RTC
To compile this driver as a module, choose M here: the To compile this driver as a module, choose M here: the
module will be called js-rtc. module will be called js-rtc.
config SGI_DS1286
tristate "SGI DS1286 RTC support"
depends on SGI_HAS_DS1286
help
If you say Y here and create a character special file /dev/rtc with
major number 10 and minor number 135 using mknod ("man mknod"), you
will get access to the real time clock built into your computer.
Every SGI has such a clock built in. It reports status information
via the file /proc/rtc and its behaviour is set by various ioctls on
/dev/rtc.
config SGI_IP27_RTC config SGI_IP27_RTC
bool "SGI M48T35 RTC support" bool "SGI M48T35 RTC support"
depends on SGI_IP27 depends on SGI_IP27
......
...@@ -74,7 +74,6 @@ obj-$(CONFIG_RTC) += rtc.o ...@@ -74,7 +74,6 @@ obj-$(CONFIG_RTC) += rtc.o
obj-$(CONFIG_HPET) += hpet.o obj-$(CONFIG_HPET) += hpet.o
obj-$(CONFIG_GEN_RTC) += genrtc.o obj-$(CONFIG_GEN_RTC) += genrtc.o
obj-$(CONFIG_EFI_RTC) += efirtc.o obj-$(CONFIG_EFI_RTC) += efirtc.o
obj-$(CONFIG_SGI_DS1286) += ds1286.o
obj-$(CONFIG_SGI_IP27_RTC) += ip27-rtc.o obj-$(CONFIG_SGI_IP27_RTC) += ip27-rtc.o
obj-$(CONFIG_DS1302) += ds1302.o obj-$(CONFIG_DS1302) += ds1302.o
obj-$(CONFIG_XILINX_HWICAP) += xilinx_hwicap/ obj-$(CONFIG_XILINX_HWICAP) += xilinx_hwicap/
......
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment