diff options
| author | Tom Rini <[email protected]> | 2025-05-14 12:39:35 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-05-14 12:39:35 -0600 |
| commit | f97cfef5d9711d567bc86a7bd23a51776568c8d2 (patch) | |
| tree | bf58c1664f4f834fe71424850d7cd9ada058efd4 | |
| parent | 2f0bf852abeca1fed98662b4b5f6a655b8d46925 (diff) | |
gpio: pca953x: Add missing <asm/byteorder.h>
This driver takes a long implicit include path to get this header which
it directly uses. Add it.
Signed-off-by: Tom Rini <[email protected]>
| -rw-r--r-- | drivers/gpio/pca953x.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpio/pca953x.c b/drivers/gpio/pca953x.c index 2fb14590c0f..f0a79b92b02 100644 --- a/drivers/gpio/pca953x.c +++ b/drivers/gpio/pca953x.c @@ -13,6 +13,7 @@ #include <i2c.h> #include <pca953x.h> #include <vsprintf.h> +#include <asm/byteorder.h> /* Default to an address that hopefully won't corrupt other i2c devices */ #ifndef CFG_SYS_I2C_PCA953X_ADDR |
