Commit 673492a8 authored by Alexander Clouter's avatar Alexander Clouter Committed by Nicolas Pitre

[ARM] orion5x: ts78xx amend RTC registering to not depend on ifdef's

amend RTC registering to not depend on ifdef's
Signed-off-by: default avatarAlexander Clouter <alex@digriz.org.uk>
Signed-off-by: default avatarNicolas Pitre <nico@cam.org>
parent f5273fa3
...@@ -75,7 +75,6 @@ static struct mv_sata_platform_data ts78xx_sata_data = { ...@@ -75,7 +75,6 @@ static struct mv_sata_platform_data ts78xx_sata_data = {
/***************************************************************************** /*****************************************************************************
* RTC M48T86 - nicked^Wborrowed from arch/arm/mach-ep93xx/ts72xx.c * RTC M48T86 - nicked^Wborrowed from arch/arm/mach-ep93xx/ts72xx.c
****************************************************************************/ ****************************************************************************/
#ifdef CONFIG_RTC_DRV_M48T86
#define TS_RTC_CTRL (TS78XX_FPGA_REGS_VIRT_BASE | 0x808) #define TS_RTC_CTRL (TS78XX_FPGA_REGS_VIRT_BASE | 0x808)
#define TS_RTC_DATA (TS78XX_FPGA_REGS_VIRT_BASE | 0x80c) #define TS_RTC_DATA (TS78XX_FPGA_REGS_VIRT_BASE | 0x80c)
...@@ -150,16 +149,6 @@ static void ts78xx_ts_rtc_unload(void) ...@@ -150,16 +149,6 @@ static void ts78xx_ts_rtc_unload(void)
{ {
platform_device_del(&ts78xx_ts_rtc_device); platform_device_del(&ts78xx_ts_rtc_device);
} }
#else
static int ts78xx_ts_rtc_load(void)
{
return -ENODEV;
}
static void ts78xx_ts_rtc_unload(void)
{
}
#endif
/***************************************************************************** /*****************************************************************************
* FPGA 'hotplug' support code * FPGA 'hotplug' support code
...@@ -188,8 +177,7 @@ static int ts78xx_fpga_load_devices(void) ...@@ -188,8 +177,7 @@ static int ts78xx_fpga_load_devices(void)
if (ts78xx_fpga.supports.ts_rtc.present == 1) { if (ts78xx_fpga.supports.ts_rtc.present == 1) {
tmp = ts78xx_ts_rtc_load(); tmp = ts78xx_ts_rtc_load();
if (tmp) { if (tmp) {
printk(KERN_INFO "TS-78xx RTC" printk(KERN_INFO "TS-78xx: RTC not registered\n");
" not detected or enabled\n");
ts78xx_fpga.supports.ts_rtc.present = 0; ts78xx_fpga.supports.ts_rtc.present = 0;
} }
ret |= tmp; ret |= tmp;
......
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