global: Migrate CONFIG_SYS_FSL* symbols to the CFG_SYS namespace
[platform/kernel/u-boot.git] / drivers / misc / fsl_devdis.c
index 996f45c..179053a 100644 (file)
@@ -1,8 +1,7 @@
+// SPDX-License-Identifier: GPL-2.0+
 /*
  * Copyright 2015 Freescale Semiconductor, Inc.
  * Author: Zhuoyu Zhang <Zhuoyu.Zhang@freescale.com>
- *
- * SPDX-License-Identifier:    GPL-2.0+
  */
 #include <common.h>
 #include <asm/io.h>
@@ -15,7 +14,7 @@
 void device_disable(const struct devdis_table *tbl, uint32_t num)
 {
        int i;
-       struct ccsr_gur __iomem *gur = (void *)CONFIG_SYS_FSL_GUTS_ADDR;
+       struct ccsr_gur __iomem *gur = (void *)CFG_SYS_FSL_GUTS_ADDR;
 
        /*
         * Extract hwconfig from environment and disable unused device.
@@ -26,4 +25,3 @@ void device_disable(const struct devdis_table *tbl, uint32_t num)
                                tbl[i].mask);
        }
 }
-