diff options
author | Simon Glass <sjg@chromium.org> | 2019-11-14 12:57:11 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-12-02 18:23:06 -0500 |
commit | c3e4430ef3ea313dd4c97d8b089bd841e66d394b (patch) | |
tree | 7a5e0f4c1b4504cf242ba1ff2418d6c014b37c9b /drivers/misc | |
parent | 9ce2aa171039f1097e2d293235e733cce94cbabb (diff) | |
download | u-boot-c3e4430ef3ea313dd4c97d8b089bd841e66d394b.tar.gz u-boot-c3e4430ef3ea313dd4c97d8b089bd841e66d394b.tar.xz u-boot-c3e4430ef3ea313dd4c97d8b089bd841e66d394b.zip |
common: Drop global inclusion of status_led.h
This is only used by a few files so it should not be in the common header.
Move it out.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'drivers/misc')
-rw-r--r-- | drivers/misc/pca9551_led.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/misc/pca9551_led.c b/drivers/misc/pca9551_led.c index 2333ec8038..cdc4390f81 100644 --- a/drivers/misc/pca9551_led.c +++ b/drivers/misc/pca9551_led.c @@ -6,6 +6,7 @@ #include <common.h> #include <errno.h> #include <i2c.h> +#include <status_led.h> #ifndef CONFIG_PCA9551_I2C_ADDR #error "CONFIG_PCA9551_I2C_ADDR not defined!" |