Felix Singer has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/47835 )
Change subject: mb/clevo/cml-u: Get rid of cnl_configure_pads() ......................................................................
mb/clevo/cml-u: Get rid of cnl_configure_pads()
Change-Id: I75dd15ab6d2b3b72b3ad0398df87b349fd00bc3c Signed-off-by: Felix Singer felixsinger@posteo.net --- M src/mainboard/clevo/cml-u/ramstage.c 1 file changed, 7 insertions(+), 5 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/35/47835/1
diff --git a/src/mainboard/clevo/cml-u/ramstage.c b/src/mainboard/clevo/cml-u/ramstage.c index 037409c..824adfc 100644 --- a/src/mainboard/clevo/cml-u/ramstage.c +++ b/src/mainboard/clevo/cml-u/ramstage.c @@ -1,11 +1,13 @@ /* SPDX-License-Identifier: GPL-2.0-only */
-#include <soc/ramstage.h> +#include <device/device.h> #include <variant/gpio.h>
-void mainboard_silicon_init_params(FSP_S_CONFIG *params) +static void init_mainboard(void *chip_info) { - /* Configure pads prior to SiliconInit() in case there's any - dependencies during hardware initialization. */ - cnl_configure_pads(gpio_table, ARRAY_SIZE(gpio_table)); + gpio_configure_pads(gpio_table, ARRAY_SIZE(gpio_table)); } + +struct chip_operations mainboard_ops = { + .init = init_mainboard, +};