diff options
author | Paul Bolle <pebolle@tiscali.nl> | 2013-03-20 05:43:48 -0400 |
---|---|---|
committer | Jesper Nilsson <jespern@axis.com> | 2013-09-10 11:28:19 -0400 |
commit | 569fa26319203a41238e83340c54639eadfea89b (patch) | |
tree | 44121fed5c8924ac2033234e887179bd572f4e0b /arch/cris/arch-v10 | |
parent | 96184b606fa02ba8f6fe00a074d7d43617995008 (diff) |
CRIS: Remove last traces of legacy RTC drivers
These legacy drivers were removed in commit
9c75fc8c5c8c50775fc8b89418219221335b758f ("CRIS: Remove legacy RTC
drivers"). Now remove their last traces in two Kconfig files and one
Makefile.
Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
Signed-off-by: Jesper Nilsson <jespern@axis.com>
Diffstat (limited to 'arch/cris/arch-v10')
-rw-r--r-- | arch/cris/arch-v10/drivers/Kconfig | 47 | ||||
-rw-r--r-- | arch/cris/arch-v10/drivers/Makefile | 2 |
2 files changed, 0 insertions, 49 deletions
diff --git a/arch/cris/arch-v10/drivers/Kconfig b/arch/cris/arch-v10/drivers/Kconfig index daf5f19b61a1..f7c4272fabf0 100644 --- a/arch/cris/arch-v10/drivers/Kconfig +++ b/arch/cris/arch-v10/drivers/Kconfig | |||
@@ -580,51 +580,4 @@ config ETRAX_PB_CHANGEABLE_BITS | |||
580 | Bit set = changeable. | 580 | Bit set = changeable. |
581 | You probably want 00 here. | 581 | You probably want 00 here. |
582 | 582 | ||
583 | config ETRAX_DS1302_RST_ON_GENERIC_PORT | ||
584 | bool "DS1302 RST on Generic Port" | ||
585 | depends on ETRAX_DS1302 | ||
586 | help | ||
587 | If your product has the RST signal line for the DS1302 RTC on the | ||
588 | Generic Port then say Y here, otherwise leave it as N in which | ||
589 | case the RST signal line is assumed to be connected to Port PB | ||
590 | (just like the SCL and SDA lines). | ||
591 | |||
592 | config ETRAX_DS1302_RSTBIT | ||
593 | int "DS1302 RST bit number" | ||
594 | depends on ETRAX_DS1302 | ||
595 | default "2" | ||
596 | help | ||
597 | This is the bit number for the RST signal line of the DS1302 RTC on | ||
598 | the selected port. If you have selected the generic port then it | ||
599 | should be bit 27, otherwise your best bet is bit 5. | ||
600 | |||
601 | config ETRAX_DS1302_SCLBIT | ||
602 | int "DS1302 SCL bit number" | ||
603 | depends on ETRAX_DS1302 | ||
604 | default "1" | ||
605 | help | ||
606 | This is the bit number for the SCL signal line of the DS1302 RTC on | ||
607 | Port PB. This is probably best left at 3. | ||
608 | |||
609 | config ETRAX_DS1302_SDABIT | ||
610 | int "DS1302 SDA bit number" | ||
611 | depends on ETRAX_DS1302 | ||
612 | default "0" | ||
613 | help | ||
614 | This is the bit number for the SDA signal line of the DS1302 RTC on | ||
615 | Port PB. This is probably best left at 2. | ||
616 | |||
617 | config ETRAX_DS1302_TRICKLE_CHARGE | ||
618 | int "DS1302 Trickle charger value" | ||
619 | depends on ETRAX_DS1302 | ||
620 | default "0" | ||
621 | help | ||
622 | This controls the initial value of the trickle charge register. | ||
623 | 0 = disabled (use this if you are unsure or have a non rechargeable battery) | ||
624 | Otherwise the following values can be OR:ed together to control the | ||
625 | charge current: | ||
626 | 1 = 2kohm, 2 = 4kohm, 3 = 4kohm | ||
627 | 4 = 1 diode, 8 = 2 diodes | ||
628 | Allowed values are (increasing current): 0, 11, 10, 9, 7, 6, 5 | ||
629 | |||
630 | endif | 583 | endif |
diff --git a/arch/cris/arch-v10/drivers/Makefile b/arch/cris/arch-v10/drivers/Makefile index 44bf2e88c26e..e5c13183b97c 100644 --- a/arch/cris/arch-v10/drivers/Makefile +++ b/arch/cris/arch-v10/drivers/Makefile | |||
@@ -6,7 +6,5 @@ obj-$(CONFIG_ETRAX_AXISFLASHMAP) += axisflashmap.o | |||
6 | obj-$(CONFIG_ETRAX_I2C) += i2c.o | 6 | obj-$(CONFIG_ETRAX_I2C) += i2c.o |
7 | obj-$(CONFIG_ETRAX_I2C_EEPROM) += eeprom.o | 7 | obj-$(CONFIG_ETRAX_I2C_EEPROM) += eeprom.o |
8 | obj-$(CONFIG_ETRAX_GPIO) += gpio.o | 8 | obj-$(CONFIG_ETRAX_GPIO) += gpio.o |
9 | obj-$(CONFIG_ETRAX_DS1302) += ds1302.o | ||
10 | obj-$(CONFIG_ETRAX_PCF8563) += pcf8563.o | ||
11 | obj-$(CONFIG_ETRAX_SYNCHRONOUS_SERIAL) += sync_serial.o | 9 | obj-$(CONFIG_ETRAX_SYNCHRONOUS_SERIAL) += sync_serial.o |
12 | 10 | ||