mb/google/guybrush,skyrim: use gpio.h include everywhere
Now that gpio.h will only include the defines in the IASL case, gpio.h can be included instead of soc/gpio.h in the files that will be directly or indirectly included in the DSDT. Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: Ifc8d8fe4e4148e5b5628f32778368d1fc7f44e5b Reviewed-on: https://review.coreboot.org/c/coreboot/+/70510 Reviewed-by: Elyes Haouas <ehaouas@noos.fr> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
acf96dfcdc
commit
2557d02eee
|
@ -6,8 +6,7 @@
|
|||
#include <ec/ec.h>
|
||||
#include <ec/google/chromeec/ec_commands.h>
|
||||
#include <baseboard/gpio.h>
|
||||
/* Since this ends up being included in dsdt.asl, <gpio.h> can't be included instead */
|
||||
#include <soc/gpio.h>
|
||||
#include <gpio.h>
|
||||
|
||||
#define MAINBOARD_EC_SCI_EVENTS \
|
||||
(EC_HOST_EVENT_MASK(EC_HOST_EVENT_LID_CLOSED) \
|
||||
|
|
|
@ -3,8 +3,7 @@
|
|||
#ifndef __BASEBOARD_GPIO_H__
|
||||
#define __BASEBOARD_GPIO_H__
|
||||
|
||||
/* Since this ends up being included in dsdt.asl, <gpio.h> can't be included instead */
|
||||
#include <soc/gpio.h>
|
||||
#include <gpio.h>
|
||||
|
||||
/* SPI Write protect */
|
||||
#define CROS_WP_GPIO GPIO_67
|
||||
|
|
|
@ -6,8 +6,7 @@
|
|||
#include <ec/ec.h>
|
||||
#include <ec/google/chromeec/ec_commands.h>
|
||||
#include <baseboard/gpio.h>
|
||||
/* Since this ends up being included in dsdt.asl, <gpio.h> can't be included instead */
|
||||
#include <soc/gpio.h>
|
||||
#include <gpio.h>
|
||||
|
||||
#define MAINBOARD_EC_SCI_EVENTS \
|
||||
(EC_HOST_EVENT_MASK(EC_HOST_EVENT_LID_CLOSED) \
|
||||
|
|
|
@ -3,8 +3,7 @@
|
|||
#ifndef __BASEBOARD_GPIO_H__
|
||||
#define __BASEBOARD_GPIO_H__
|
||||
|
||||
/* Since this ends up being included in dsdt.asl, <gpio.h> can't be included instead */
|
||||
#include <soc/gpio.h>
|
||||
#include <gpio.h>
|
||||
|
||||
/* SPI Write protect */
|
||||
#define CROS_WP_GPIO GPIO_138
|
||||
|
|
Loading…
Reference in New Issue