diff options
author | Tom Rini <trini@konsulko.com> | 2022-04-01 10:35:19 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-04-01 10:35:19 -0400 |
commit | 5b160c3a13f80708b4a720119cd2a1ef161e57f0 (patch) | |
tree | 68773d9d158334a4f5894ac9111328f2ee06ecad /drivers/rtc/mcfrtc.c | |
parent | 52d8100b1d60b656e3e311e3312fed43d388088a (diff) | |
parent | 0a3689cb86236d42522bf9eb0be942aa7761dfc1 (diff) |
Merge branch '2022-04-01-Kconfig-migrations-and-cleanups' into next
- Migrate a number of CONFIG symbols to Kconfig. Of note, with this we
now complete migration of CONFIG_SYS_EXTRA_OPTIONS.
Diffstat (limited to 'drivers/rtc/mcfrtc.c')
-rw-r--r-- | drivers/rtc/mcfrtc.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/rtc/mcfrtc.c b/drivers/rtc/mcfrtc.c index e10638ec7dd..d2ac889c309 100644 --- a/drivers/rtc/mcfrtc.c +++ b/drivers/rtc/mcfrtc.c @@ -13,10 +13,6 @@ #undef RTC_DEBUG -#ifndef CONFIG_SYS_MCFRTC_BASE -#error RTC_BASE is not defined! -#endif - #define isleap(y) ((((y) % 4) == 0 && ((y) % 100) != 0) || ((y) % 400) == 0) #define STARTOFTIME 1970 |