From: Adam Ford Date: Thu, 27 Jan 2022 21:10:01 +0000 (-0600) Subject: imx: imx8mn_beacon: Remove redundant code X-Git-Url: http://git.dujemihanovic.xyz/login.html?a=commitdiff_plain;h=3d14bd2d207b820b6d5c960fe4c542ea308a2e86;p=u-boot.git imx: imx8mn_beacon: Remove redundant code The function to return the default MMC device for the environment already has a __weak instance doing exactly the same thing. Remove the superfluous one. Signed-off-by: Adam Ford --- diff --git a/board/beacon/imx8mn/imx8mn_beacon.c b/board/beacon/imx8mn/imx8mn_beacon.c index 7fe252b262..6397dac872 100644 --- a/board/beacon/imx8mn/imx8mn_beacon.c +++ b/board/beacon/imx8mn/imx8mn_beacon.c @@ -50,8 +50,3 @@ int board_init(void) return 0; } - -int board_mmc_get_env_dev(int devno) -{ - return CONFIG_SYS_MMC_ENV_DEV; -}