]> git.sur5r.net Git - u-boot/blobdiff - drivers/pci/pci.c
mtd: nand: mxs_nand_spl: refactor mxs_flash_ident
[u-boot] / drivers / pci / pci.c
index 6b36c187b522740e75efb7366330a974b2acf1fc..221054593ef221abb9e05e779a9cf18f3b1b5399 100644 (file)
@@ -1,11 +1,10 @@
+// SPDX-License-Identifier: GPL-2.0+
 /*
  * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com>
  * Andreas Heppel <aheppel@sysgo.de>
  *
  * (C) Copyright 2002, 2003
  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
- *
- * SPDX-License-Identifier:    GPL-2.0+
  */
 
 /*
@@ -427,7 +426,7 @@ int pci_hose_scan(struct pci_controller *hose)
 
        if (!gd->pcidelay_done) {
                /* wait "pcidelay" ms (if defined)... */
-               s = getenv("pcidelay");
+               s = env_get("pcidelay");
                if (s) {
                        int val = simple_strtoul(s, NULL, 10);
                        for (i = 0; i < val; i++)
@@ -459,7 +458,7 @@ void pci_init(void)
        hose_head = NULL;
 
        /* allow env to disable pci init/enum */
-       if (getenv("pcidisable") != NULL)
+       if (env_get("pcidisable") != NULL)
                return;
 
        /* now call board specific pci_init()... */