]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
rtc: Remove <common.h> and add needed includes
authorTom Rini <trini@konsulko.com>
Thu, 2 May 2024 01:31:15 +0000 (19:31 -0600)
committerTom Rini <trini@konsulko.com>
Tue, 7 May 2024 14:00:56 +0000 (08:00 -0600)
Remove <common.h> from this driver directory and when needed
add missing include files directly.

Signed-off-by: Tom Rini <trini@konsulko.com>
30 files changed:
drivers/rtc/abx80x.c
drivers/rtc/davinci.c
drivers/rtc/ds1307.c
drivers/rtc/ds1337.c
drivers/rtc/ds1374.c
drivers/rtc/ds3231.c
drivers/rtc/ds3232.c
drivers/rtc/emul_rtc.c
drivers/rtc/ht1380.c
drivers/rtc/i2c_rtc_emul.c
drivers/rtc/isl1208.c
drivers/rtc/m41t62.c
drivers/rtc/mc13xxx-rtc.c
drivers/rtc/mc146818.c
drivers/rtc/mcfrtc.c
drivers/rtc/mvrtc.c
drivers/rtc/mxsrtc.c
drivers/rtc/pcf2127.c
drivers/rtc/pcf8563.c
drivers/rtc/pl031.c
drivers/rtc/pt7c4338.c
drivers/rtc/rtc-uclass.c
drivers/rtc/rv3029.c
drivers/rtc/rv8803.c
drivers/rtc/rx8010sj.c
drivers/rtc/rx8025.c
drivers/rtc/s35392a.c
drivers/rtc/sandbox_rtc.c
drivers/rtc/stm32_rtc.c
drivers/rtc/zynqmp_rtc.c

index 823aff03f5f02a86c43d4d25817271b3217c6ac7..1235b840ab0418e684a632a6dc06872630c31f28 100644 (file)
@@ -12,7 +12,6 @@
  *
  */
 
-#include <common.h>
 #include <dm.h>
 #include <i2c.h>
 #include <rtc.h>
index c7ce41bbf5cc4a6017c06c215feda490eaa1afe0..a20b73e1990a1df5c0226e9ebf556324caf168e1 100644 (file)
@@ -4,7 +4,6 @@
  * Heiko Schocher <hs@denx.de>
  * Copyright (C) 2021 Dario Binacchi <dariobin@libero.it>
  */
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <clk.h>
index 0e9d3d24dd89721998a9fa7355499b4cc7c26b16..ba06ff9f0beed27b7e050e2876d63ef46d58f77b 100644 (file)
@@ -13,7 +13,7 @@
  * based on ds1337.c
  */
 
-#include <common.h>
+#include <config.h>
 #include <command.h>
 #include <dm.h>
 #include <log.h>
index 2c780ab8edfadaaac853cb35de0ecb76a83b40be..7eccf1cb8c54c203415405cb4649ebb57713ff45 100644 (file)
@@ -11,7 +11,7 @@
  * DS1337 Real Time Clock (RTC).
  */
 
-#include <common.h>
+#include <config.h>
 #include <command.h>
 #include <dm.h>
 #include <log.h>
index 89442f9386ba8b5e10d15ae3448d7ea769b62808..895dbbaf1c7499810f03cc2e9600e48d82e3f64e 100644 (file)
@@ -13,7 +13,7 @@
  * based on ds1337.c
  */
 
-#include <common.h>
+#include <config.h>
 #include <command.h>
 #include <rtc.h>
 #include <i2c.h>
index bd32ed2dbf91b5a70b334de2aa18b0e037ce6c1f..d6267d660d0d6c7247f0ef7f2bccd51e90c00bb7 100644 (file)
@@ -14,7 +14,7 @@
  * copied from ds1337.c
  */
 
-#include <common.h>
+#include <config.h>
 #include <command.h>
 #include <dm.h>
 #include <log.h>
index 16501cfe5d3fc346879c0d870777eb33beb4fec4..7314ba219dac416c0b60264d1556538b97b9e36c 100644 (file)
@@ -3,7 +3,6 @@
  * (C) Copyright 2019, Vaisala Oyj
  */
 
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <i2c.h>
index 6f47d82522baf83d0041eb2cbbef29dd28e57cfb..97a8d9bb7df50bb08de57b1374aa97b4a0efd075 100644 (file)
@@ -5,11 +5,11 @@
  * This driver emulates a real time clock based on timer ticks.
  */
 
-#include <common.h>
 #include <div64.h>
 #include <dm.h>
 #include <env.h>
 #include <rtc.h>
+#include <time.h>
 #include <timestamp.h>
 
 /**
index 85fcee3e71e66ff9872420dda88104d8ec4782aa..c202261e99990ea2392b864fce4a98707d9c9454 100644 (file)
@@ -15,7 +15,6 @@
  *
  */
 
-#include <common.h>
 #include <dm.h>
 #include <rtc.h>
 #include <bcd.h>
index c307d6036dd5b87ca4fc256a47d3938ccdbb980e..ea11c72c964c952b08a7354df0d003f66f316526 100644 (file)
@@ -13,7 +13,6 @@
  * time-keeping. It does not change the system time.
  */
 
-#include <common.h>
 #include <dm.h>
 #include <i2c.h>
 #include <log.h>
index 59a60b75b3072cb533e8e94c1d41c6e420514e95..83db505afe9e9b1e2a3c423ac7c245c44bf038d6 100644 (file)
@@ -11,7 +11,6 @@
  * ISL1208 Real Time Clock (RTC).
  */
 
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <rtc.h>
index 891fe09d311b31fc94af723c7826bda2b6f629b1..7bfea9e0b3151e57fc6d7d29b6daf5f0e450734d 100644 (file)
@@ -16,7 +16,7 @@
 
 /* #define     DEBUG   */
 
-#include <common.h>
+#include <config.h>
 #include <command.h>
 #include <dm.h>
 #include <log.h>
index 6c2aef89758bbf5a65ef79fa91ebbcc5f9fed195..9e396bcdae95489583798019ef8d4eb236776849 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright (C) 2008, Guennadi Liakhovetski <lg@denx.de>
  */
 
-#include <common.h>
 #include <rtc.h>
 #include <spi.h>
 #include <power/pmic.h>
index 03ce081d5764c7989ed0e0d44c6d144b5e0d308d..c0d86c6d063d6694de3d2e5fbd229605ae30c02c 100644 (file)
@@ -8,7 +8,6 @@
  * Date & Time support for the MC146818 (PIXX4) RTC
  */
 
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <rtc.h>
index d2ac889c3095edba6a89440236696721199ec803..b5cc6b968816f6c67558795db6b8f444bd54a753 100644 (file)
@@ -4,7 +4,6 @@
  * TsiChung Liew (Tsi-Chung.Liew@freescale.com)
  */
 
-#include <common.h>
 
 #include <command.h>
 #include <rtc.h>
index 50240d57fa9e8da66ba456b265b2d3268d5fcfcd..f070c681b94e582e6faecda27a672dbb5b1dedeb 100644 (file)
@@ -8,7 +8,6 @@
  * Date & Time support for Marvell Integrated RTC
  */
 
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <rtc.h>
index be899a925408c3f6ccfba9c9fab399fb89296926..69d22a4bdcb6b6019d9ea4e9448bcdb1fdc4f4ca 100644 (file)
@@ -6,7 +6,6 @@
  * on behalf of DENX Software Engineering GmbH
  */
 
-#include <common.h>
 #include <rtc.h>
 #include <asm/io.h>
 #include <asm/arch/imx-regs.h>
index 2f3fafb4968fac960c381c75ab35834d4490759a..27a340f07d68bf0bb68b96c9e27e66f8b8f4a2bd 100644 (file)
@@ -5,7 +5,6 @@
 
 /*     #define DEBUG   */
 
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <i2c.h>
index 91a412440b85124c14f1e3de0b3e3ee92dee8fe8..03bef68051ba4fa7ed732b253fce7a60465f8a35 100644 (file)
@@ -10,7 +10,7 @@
 
 /* #define     DEBUG   */
 
-#include <common.h>
+#include <config.h>
 #include <command.h>
 #include <dm.h>
 #include <log.h>
index a1d376611d6578e2be63ebb376bcacec62f920de..855ee9134168c9c93be610262cf6f379626625aa 100644 (file)
@@ -6,7 +6,6 @@
  * reference linux-2.6.20.6/drivers/rtc/rtc-pl031.c
  */
 
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <errno.h>
index e0a7bd3662fbda8316e3631b5f56920f8f6c2990..79df07814a6b82231daceb258d1d351e8fc4f57a 100644 (file)
@@ -18,7 +18,7 @@
  * It has 56 bytes of nonvolatile RAM.
  */
 
-#include <common.h>
+#include <config.h>
 #include <command.h>
 #include <dm.h>
 #include <log.h>
index e5ae6ea4d5f3cf4aa55ed5c771c64f91e0f7db9e..8f6c0c6a0a78702398e84207b5197ccab794fb95 100644 (file)
@@ -6,7 +6,6 @@
 
 #define LOG_CATEGORY UCLASS_RTC
 
-#include <common.h>
 #include <dm.h>
 #include <errno.h>
 #include <log.h>
index 9c53c7f7dbc7d3ddc1ad5236c9ab9594577f4a38..a82acec6f7e5496940c06e3947adf9526f18d836 100644 (file)
@@ -7,7 +7,6 @@
  *   Michael Buesch <m@bues.ch>
  */
 
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <i2c.h>
index 06a4ae89fa961e788a5f8fc8f1385e6398ab288b..82b43722ff514aa1ddca2e48039e06d1a2f2573a 100644 (file)
@@ -10,7 +10,6 @@
  *
  */
 
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <log.h>
index bf93b557748b96e3523caebc10245f8a5961cd7e..0d778f4c328e20f8d06b63fe5867740f0c6c1336 100644 (file)
@@ -17,7 +17,7 @@
  */
 
 #include <command.h>
-#include <common.h>
+#include <config.h>
 #include <dm.h>
 #include <i2c.h>
 #include <rtc.h>
index 1394c2306a445f5326ba29446fe0589340f24859..c7895244283cf315207b9344484036f88402743f 100644 (file)
@@ -8,7 +8,6 @@
  * Epson RX8025 RTC driver.
  */
 
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <i2c.h>
index 80f55c86233a7ad8c1184416a755f805e42962c9..03fb9a0be9144344fef9596fda082a7c6a6c8fce 100644 (file)
@@ -18,7 +18,6 @@
  */
 
 #include <command.h>
-#include <common.h>
 #include <dm.h>
 #include <i2c.h>
 #include <linux/bitrev.h>
index 657e5c7be2cfb6d7e60c744753a76cbf50c383a1..4404501c2f65c3ac0ac2409bf8752d353bd93857 100644 (file)
@@ -4,7 +4,6 @@
  * Written by Simon Glass <sjg@chromium.org>
  */
 
-#include <common.h>
 #include <dm.h>
 #include <i2c.h>
 #include <rtc.h>
index ec7584c3d70c3af3dcabe1fe96aa1ccf62eeb49c..ee70c11c8bcb4f181bea29cd02eeed88d739d5fa 100644 (file)
@@ -5,7 +5,6 @@
 
 #define LOG_CATEGORY UCLASS_RTC
 
-#include <common.h>
 #include <clk.h>
 #include <dm.h>
 #include <malloc.h>
index ab9b93ca97933e52778365cf2a3d5195c4456a2c..15122a0483825263ac06f01e441de3739874c75b 100644 (file)
@@ -5,7 +5,6 @@
 
 #define LOG_CATEGORY UCLASS_RTC
 
-#include <common.h>
 #include <dm.h>
 #include <rtc.h>
 #include <asm/io.h>