diff options
author | Tim Crawford <tcrawford@system76.com> | 2022-08-17 11:37:55 -0600 |
---|---|---|
committer | Martin Roth <martin.roth@amd.corp-partner.google.com> | 2022-08-19 14:22:20 +0000 |
commit | 34c8a19f9272c7483c4f6a009e59ef748625f25a (patch) | |
tree | b9d80f28bca6f7b4bb4cecc8d3429c0299020473 /src/mainboard/system76/gaze16/include | |
parent | b312f196c94666b5183369a54052d7159b8cb6bd (diff) |
mb/system76/gaze16: Split gpio.h into data files
Split `gpio.h` into `gpio_early.c` for bootblock and `gpio.c` for
ramstage to match other System76 boards.
Change-Id: I24398ad459754ac80d92d70687ab70b22894a01c
Signed-off-by: Tim Crawford <tcrawford@system76.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/66168
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/mainboard/system76/gaze16/include')
-rw-r--r-- | src/mainboard/system76/gaze16/include/variant/gpio.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mainboard/system76/gaze16/include/variant/gpio.h b/src/mainboard/system76/gaze16/include/variant/gpio.h new file mode 100644 index 0000000000..95d576294f --- /dev/null +++ b/src/mainboard/system76/gaze16/include/variant/gpio.h @@ -0,0 +1,9 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ + +#ifndef VARIANT_GPIO_H +#define VARIANT_GPIO_H + +void variant_configure_early_gpios(void); +void variant_configure_gpios(void); + +#endif |