diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2020-05-12 10:50:46 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-05-18 07:16:31 +0000 |
commit | 1fb15b0ac56644cfe095ebb94fcddaa2c92bd1c1 (patch) | |
tree | 8f876870448c4004de0dbd77f218884e1c814b08 /src | |
parent | 8eaa5dc684f778dcfff73630c0d914162f0a243f (diff) |
mb/facebook/fbg1701: Remove direct 'include <soc/gpio.h>'
Don't directly include <soc/gpio.h>. All code using GPIO features
should always and only include <gpio.h>, which should indirectly
include the SoC-specific <soc/gpio.h>.
Change-Id: Id2663398b9f069ab1f60d63016ea7aa080f66d20
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/41321
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Frans Hendriks <fhendriks@eltan.com>
Reviewed-by: Wim Vervoorn <wvervoorn@eltan.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/mainboard/facebook/fbg1701/gpio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/facebook/fbg1701/gpio.c b/src/mainboard/facebook/fbg1701/gpio.c index dc4d3894d3..cb1d2cb86c 100644 --- a/src/mainboard/facebook/fbg1701/gpio.c +++ b/src/mainboard/facebook/fbg1701/gpio.c @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -#include <soc/gpio.h> +#include <gpio.h> /* South East Community */ static const struct soc_gpio_map gpse_gpio_map[] = { |