minnowmax.c 304 B

123456789101112131415161718192021
  1. /*
  2. * Copyright (C) 2015, Google, Inc
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #include <common.h>
  7. #include <asm/gpio.h>
  8. int arch_early_init_r(void)
  9. {
  10. /* do the pin-muxing */
  11. gpio_ich6_pinctrl_init();
  12. return 0;
  13. }
  14. void setup_pch_gpios(u16 gpiobase, const struct pch_gpio_map *gpio)
  15. {
  16. return;
  17. }