Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[PATCH] AT91RM9200 RTC

The new Atmel AT91SAM9261 and AT91SAM9260 processors do not have the
internal RTC peripheral. This RTC driver is therefore
AT91RM9200-specific.

This patch renames rtc-at91.c to rtc-at91rm9200.c, and changes the name
of the configuration option.

Signed-off-by: Andrew Victor <andrew@sanpeople.com>
Cc: Alessandro Zummo <a.zummo@towertech.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by

Andrew Victor and committed by
Linus Torvalds
7fc39f6d a14e1893

+2 -2
+1 -1
drivers/rtc/Kconfig
··· 288 288 To compile this driver as a module, choose M here: the 289 289 module will be called rtc-pl031. 290 290 291 - config RTC_DRV_AT91 291 + config RTC_DRV_AT91RM9200 292 292 tristate "AT91RM9200" 293 293 depends on RTC_CLASS && ARCH_AT91RM9200 294 294 help
+1 -1
drivers/rtc/Makefile
··· 35 35 obj-$(CONFIG_RTC_DRV_PL031) += rtc-pl031.o 36 36 obj-$(CONFIG_RTC_DRV_MAX6902) += rtc-max6902.o 37 37 obj-$(CONFIG_RTC_DRV_V3020) += rtc-v3020.o 38 - obj-$(CONFIG_RTC_DRV_AT91) += rtc-at91.o 38 + obj-$(CONFIG_RTC_DRV_AT91RM9200)+= rtc-at91rm9200.o 39 39 obj-$(CONFIG_RTC_DRV_SH) += rtc-sh.o
drivers/rtc/rtc-at91.c drivers/rtc/rtc-at91rm9200.c