diff options
author | Daniel Peng <Daniel_Peng@pegatron.corp-partner.google.com> | 2024-02-19 21:42:28 +0800 |
---|---|---|
committer | Subrata Banik <subratabanik@google.com> | 2024-02-21 06:09:33 +0000 |
commit | d6e287f41055e8893da6c6b663f60913a878ee92 (patch) | |
tree | 72474dfcca7e3c88c2066a3d88c0938f37df1f93 /src/mainboard/google/brya/variants/glassway/include | |
parent | 91c8827e62f3110cbd5119b8e6fb1c28f766641b (diff) |
mb/google/brya: Create glassway variant
Create the glassway variant of the nivviks reference board by copying
the template files to a new directory named for the variant.
BUG=b:319071869
BRANCH=firmware-nissa-15217.B
TEST=None
Change-Id: I597666a5be6f71b82c7baddbe343da3d5117dd1c
Signed-off-by: Daniel Peng <Daniel_Peng@pegatron.corp-partner.google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/80636
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Kapil Porwal <kapilporwal@google.com>
Reviewed-by: Daniel Peng <daniel_peng@pegatron.corp-partner.google.com>
Reviewed-by: Subrata Banik <subratabanik@google.com>
Reviewed-by: Eric Lai <ericllai@google.com>
Diffstat (limited to 'src/mainboard/google/brya/variants/glassway/include')
-rw-r--r-- | src/mainboard/google/brya/variants/glassway/include/variant/ec.h | 8 | ||||
-rw-r--r-- | src/mainboard/google/brya/variants/glassway/include/variant/gpio.h | 8 |
2 files changed, 16 insertions, 0 deletions
diff --git a/src/mainboard/google/brya/variants/glassway/include/variant/ec.h b/src/mainboard/google/brya/variants/glassway/include/variant/ec.h new file mode 100644 index 0000000000..7a2a6ff8b7 --- /dev/null +++ b/src/mainboard/google/brya/variants/glassway/include/variant/ec.h @@ -0,0 +1,8 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ + +#ifndef __VARIANT_EC_H__ +#define __VARIANT_EC_H__ + +#include <baseboard/ec.h> + +#endif diff --git a/src/mainboard/google/brya/variants/glassway/include/variant/gpio.h b/src/mainboard/google/brya/variants/glassway/include/variant/gpio.h new file mode 100644 index 0000000000..c4fe342621 --- /dev/null +++ b/src/mainboard/google/brya/variants/glassway/include/variant/gpio.h @@ -0,0 +1,8 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ + +#ifndef VARIANT_GPIO_H +#define VARIANT_GPIO_H + +#include <baseboard/gpio.h> + +#endif |