mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
imx8m: Drop unused function env_get_offset
This function is used in nxp u-boot tree. Signed-off-by: Michael Trimarchi <michael@amarulasolutions.com> Reviewed-by: Fabio Estevam <festevam@gmail.com>
This commit is contained in:
parent
c4c3fa98ac
commit
9da828c207
1 changed files with 0 additions and 15 deletions
|
@ -1360,19 +1360,4 @@ enum env_location env_get_location(enum env_operation op, int prio)
|
|||
}
|
||||
}
|
||||
|
||||
#ifndef ENV_IS_EMBEDDED
|
||||
long long env_get_offset(long long defautl_offset)
|
||||
{
|
||||
enum boot_device dev = get_boot_device();
|
||||
|
||||
switch (dev) {
|
||||
case NAND_BOOT:
|
||||
return (60 << 20); /* 60MB offset for NAND */
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
return defautl_offset;
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue