diff options
author | Eran Mitrani <mitrani@google.com> | 2023-10-16 14:47:29 -0700 |
---|---|---|
committer | Matt DeVillier <matt.devillier@amd.corp-partner.google.com> | 2023-10-25 16:44:25 +0000 |
commit | 05a50d7e133c46bdad68ed5aba9991f965feb498 (patch) | |
tree | d4dcd2d69351346ca73b5b7ff72a578ec83ddd4b /src/mainboard/google/rex/variants/deku/include | |
parent | 95c61c04c42c14a416261244a85eb39b359b1ecf (diff) |
mb/google/rex: Create deku variant
BUG=b:305793886
TEST=util/abuild/abuild -p none -t google/rex -x -a -b deku
built without errors.
Signed-off-by: Eran Mitrani <mitrani@google.com>
Change-Id: I332e404e82a7980bb8ed1fb084fe957f526f81d1
Reviewed-on: https://review.coreboot.org/c/coreboot/+/78393
Reviewed-by: YH Lin <yueherngl@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Jakub Czapiga <czapiga@google.com>
Reviewed-by: Subrata Banik <subratabanik@google.com>
Diffstat (limited to 'src/mainboard/google/rex/variants/deku/include')
-rw-r--r-- | src/mainboard/google/rex/variants/deku/include/variant/ec.h | 8 | ||||
-rw-r--r-- | src/mainboard/google/rex/variants/deku/include/variant/gpio.h | 8 |
2 files changed, 16 insertions, 0 deletions
diff --git a/src/mainboard/google/rex/variants/deku/include/variant/ec.h b/src/mainboard/google/rex/variants/deku/include/variant/ec.h new file mode 100644 index 0000000000..4fc0622f15 --- /dev/null +++ b/src/mainboard/google/rex/variants/deku/include/variant/ec.h @@ -0,0 +1,8 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ + +#ifndef MAINBOARD_EC_H +#define MAINBOARD_EC_H + +#include <baseboard/ec.h> + +#endif /* MAINBOARD_GPIO_H */ diff --git a/src/mainboard/google/rex/variants/deku/include/variant/gpio.h b/src/mainboard/google/rex/variants/deku/include/variant/gpio.h new file mode 100644 index 0000000000..27c87b3fe7 --- /dev/null +++ b/src/mainboard/google/rex/variants/deku/include/variant/gpio.h @@ -0,0 +1,8 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ + +#ifndef __MAINBOARD_GPIO_H__ +#define __MAINBOARD_GPIO_H__ + +#include <baseboard/gpio.h> + +#endif /* __MAINBOARD_GPIO_H__ */ |