]> git.ipfire.org Git - u-boot.git/commitdiff
env: Fix missed getenv_ulong to env_get_ulong conversion
authorAndrew F. Davis <afd@ti.com>
Wed, 14 Feb 2018 17:53:38 +0000 (11:53 -0600)
committerTom Rini <trini@konsulko.com>
Fri, 23 Feb 2018 15:21:41 +0000 (10:21 -0500)
This seems to have been missed, possibly due to the inability to
enable TI_SECURE_DEVICE on Keystone2 devices previously.

Fixes: bfebc8c965e4 ("env: Rename getenv_hex(), getenv_yesno(), getenv_ulong()")
Signed-off-by: Andrew F. Davis <afd@ti.com>
Reviewed-by: Lokesh Vutla <lokeshvutla@ti.com>
board/ti/ks2_evm/board_k2g.c

index 88df419b10ab4f15e0f3cb1075deed5e63a49974..b9575a8e46781edc6b5a5374ccb8495ebb7790a3 100644 (file)
@@ -376,7 +376,7 @@ int get_num_eth_ports(void)
 #ifdef CONFIG_TI_SECURE_DEVICE
 void board_pmmc_image_process(ulong pmmc_image, size_t pmmc_size)
 {
-       int id = getenv_ulong("dev_pmmc", 10, 0);
+       int id = env_get_ulong("dev_pmmc", 10, 0);
        int ret;
 
        if (!rproc_is_initialized())