]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - board/intel/minnowmax/minnowmax.c
x86: Convert minnowmax to use CONFIG_DM_NET
[karo-tx-uboot.git] / board / intel / minnowmax / minnowmax.c
index 6e82b163350ae1072b6798828a87e2e13edeceed..44e5bf4bed5b0e4cdb9110bac4f827fab41abfd8 100644 (file)
@@ -5,18 +5,12 @@
  */
 
 #include <common.h>
-#include <asm/ibmpc.h>
-#include <asm/pnp_def.h>
-#include <netdev.h>
-#include <smsc_lpc47m.h>
+#include <asm/gpio.h>
 
-#define SERIAL_DEV PNP_DEV(0x2e, 4)
-
-DECLARE_GLOBAL_DATA_PTR;
-
-int board_early_init_f(void)
+int arch_early_init_r(void)
 {
-       lpc47m_enable_serial(SERIAL_DEV, UART0_BASE);
+       /* do the pin-muxing */
+       gpio_ich6_pinctrl_init();
 
        return 0;
 }
@@ -25,8 +19,3 @@ void setup_pch_gpios(u16 gpiobase, const struct pch_gpio_map *gpio)
 {
        return;
 }
-
-int board_eth_init(bd_t *bis)
-{
-       return pci_eth_init(bis);
-}