ARM: zynq: Rename defconfig to be align with ZynqMP and Versal
[oweals/u-boot.git] / board / l+g / vinco / vinco.c
index a938a2c2e1d468023388a0c177d95c97b868c690..5a998e37d8a612c0ea3f01d5673514b90a85a74c 100644 (file)
@@ -1,3 +1,4 @@
+// SPDX-License-Identifier: GPL-2.0+
 /*
  * Board file for the VInCo platform
  * Based on the the SAMA5-EK board file
@@ -6,11 +7,10 @@
  *                   Bo Shen <voice.shen@atmel.com>
  * Copyright (C) 2015 Free Electrons
  *                   Gregory CLEMENT <gregory.clement@free-electrons.com>
- *
- * SPDX-License-Identifier:    GPL-2.0+
  */
 
 #include <common.h>
+#include <init.h>
 #include <asm/io.h>
 #include <asm/arch/at91_common.h>
 #include <asm/arch/at91_pmc.h>
@@ -33,7 +33,8 @@
 
 DECLARE_GLOBAL_DATA_PTR;
 
-#ifdef CONFIG_ATMEL_SPI
+/* FIXME gpio code here need to handle through DM_GPIO */
+#ifndef CONFIG_DM_SPI
 int spi_cs_is_valid(unsigned int bus, unsigned int cs)
 {
        return bus == 0 && cs == 0;
@@ -166,7 +167,7 @@ int board_init(void)
        /* adress of boot parameters */
        gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
 
-#ifdef CONFIG_ATMEL_SPI
+#ifndef CONFIG_DM_SPI
        vinco_spi0_hw_init();
 #endif