diff options
author | Tom Rini | 2024-05-01 19:30:44 -0600 |
---|---|---|
committer | Tom Rini | 2024-05-07 08:00:41 -0600 |
commit | ac01ed260baa5d0a75340afc8752573ca77ac407 (patch) | |
tree | 89735d1eef2c0240e88677ba1f1f39378064e29c /drivers/extcon | |
parent | 0cc1f2d813e0ef58d1b49875ccd77c1f0b411062 (diff) |
extcon: 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>
Diffstat (limited to 'drivers/extcon')
-rw-r--r-- | drivers/extcon/extcon-max14526.c | 1 | ||||
-rw-r--r-- | drivers/extcon/extcon-uclass.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/drivers/extcon/extcon-max14526.c b/drivers/extcon/extcon-max14526.c index a33b5ef919c..2d2166bde68 100644 --- a/drivers/extcon/extcon-max14526.c +++ b/drivers/extcon/extcon-max14526.c @@ -3,7 +3,6 @@ * Copyright (c) 2022 Svyatoslav Ryhel <clamor95@gmail.com> */ -#include <common.h> #include <dm.h> #include <i2c.h> #include <linux/delay.h> diff --git a/drivers/extcon/extcon-uclass.c b/drivers/extcon/extcon-uclass.c index 9dd22b57626..1a592873882 100644 --- a/drivers/extcon/extcon-uclass.c +++ b/drivers/extcon/extcon-uclass.c @@ -5,7 +5,6 @@ #define LOG_CATEGORY UCLASS_EXTCON -#include <common.h> #include <extcon.h> #include <dm.h> |