diff options
author | Tom Rini <trini@konsulko.com> | 2024-05-01 19:31:34 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-05-07 08:00:57 -0600 |
commit | 334edd5f4d2020ddec3da672369c0109e814ca07 (patch) | |
tree | 30a2584a1ee16fa25a0a2398764a7640a6503bb3 | |
parent | 051d224566545092ec0d6df3bc3ea33780d4cc7a (diff) | |
download | u-boot-334edd5f4d2020ddec3da672369c0109e814ca07.zip u-boot-334edd5f4d2020ddec3da672369c0109e814ca07.tar.gz u-boot-334edd5f4d2020ddec3da672369c0109e814ca07.tar.bz2 |
w1-eeprom: Remove <common.h> and add needed includes
Remove <common.h> from this driver directory and when needed
add missing include files directly.
Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | drivers/w1-eeprom/ds24xxx.c | 1 | ||||
-rw-r--r-- | drivers/w1-eeprom/ds2502.c | 1 | ||||
-rw-r--r-- | drivers/w1-eeprom/eep_sandbox.c | 1 | ||||
-rw-r--r-- | drivers/w1-eeprom/w1-eeprom-uclass.c | 1 |
4 files changed, 0 insertions, 4 deletions
diff --git a/drivers/w1-eeprom/ds24xxx.c b/drivers/w1-eeprom/ds24xxx.c index 4be378b..413d8bc 100644 --- a/drivers/w1-eeprom/ds24xxx.c +++ b/drivers/w1-eeprom/ds24xxx.c @@ -7,7 +7,6 @@ * */ -#include <common.h> #include <linux/err.h> #include <dm.h> #include <w1-eeprom.h> diff --git a/drivers/w1-eeprom/ds2502.c b/drivers/w1-eeprom/ds2502.c index a67f5ed..db9f41e 100644 --- a/drivers/w1-eeprom/ds2502.c +++ b/drivers/w1-eeprom/ds2502.c @@ -20,7 +20,6 @@ * Martin Fuzzey <martin.fuzzey@flowbird.group> */ -#include <common.h> #include <dm.h> #include <dm/device_compat.h> #include <linux/err.h> diff --git a/drivers/w1-eeprom/eep_sandbox.c b/drivers/w1-eeprom/eep_sandbox.c index 27c7f9f..2a69ca2 100644 --- a/drivers/w1-eeprom/eep_sandbox.c +++ b/drivers/w1-eeprom/eep_sandbox.c @@ -4,7 +4,6 @@ * */ -#include <common.h> #include <linux/err.h> #include <dm.h> #include <w1-eeprom.h> diff --git a/drivers/w1-eeprom/w1-eeprom-uclass.c b/drivers/w1-eeprom/w1-eeprom-uclass.c index 70ba537..3919aad 100644 --- a/drivers/w1-eeprom/w1-eeprom-uclass.c +++ b/drivers/w1-eeprom/w1-eeprom-uclass.c @@ -12,7 +12,6 @@ #define LOG_CATEGORY UCLASS_W1_EEPROM -#include <common.h> #include <dm.h> #include <log.h> #include <w1.h> |