mmc: export mmc_send_ext_csd()
[oweals/u-boot.git] / drivers / rtc / s3c24x0_rtc.c
index 187620ac896cdbebd1f429989a817588c5a3b712..96ea3cf878ee10df59d3f66cc207708cc39956ea 100644 (file)
@@ -1,8 +1,7 @@
+// SPDX-License-Identifier: GPL-2.0+
 /*
  * (C) Copyright 2003
  * David Müller ELSOFT AG Switzerland. d.mueller@elsoft.ch
- *
- * SPDX-License-Identifier:    GPL-2.0+
  */
 
 /*
@@ -12,8 +11,6 @@
 #include <common.h>
 #include <command.h>
 
-#if (defined(CONFIG_CMD_DATE))
-
 #include <asm/arch/s3c24x0_cpu.h>
 
 #include <rtc.h>
@@ -150,5 +147,3 @@ void rtc_reset(void)
        writeb((readb(&rtc->rtccon) & ~0x06) | 0x08, &rtc->rtccon);
        writeb(readb(&rtc->rtccon) & ~(0x08 | 0x01), &rtc->rtccon);
 }
-
-#endif