diff options
author | Przemyslaw Marczak <p.marczak@samsung.com> | 2015-02-17 11:24:11 (GMT) |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2015-02-25 16:47:02 (GMT) |
commit | 899a52821515d79f9e4e525fd3098bdb574062ed (patch) | |
tree | c17b1bdc2f516a3a4332911018a72bb179073686 /drivers | |
parent | 372d7decfe972966c49b337f3d2888e09004dbe4 (diff) | |
download | u-boot-899a52821515d79f9e4e525fd3098bdb574062ed.tar.xz |
dfu: samsung: move call to set_dfu_alt_info() to dfu common code
This common call can be used for setting proper entities based
on dfu command arguments.
The config: CONFIG_SET_DFU_ALT_INFO, was used only for few configs,
and now it is common.
The board file should implement:
- set_dfu_alt_info() function
Signed-off-by: Przemyslaw Marczak <p.marczak@samsung.com>
Tested-by: Lukasz Majewski <l.majewski@samsung.com>
[Test HW: Odroid U3 (Exynos 4412)]
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/dfu/dfu.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/dfu/dfu.c b/drivers/dfu/dfu.c index ad0a7e7..0560afa 100644 --- a/drivers/dfu/dfu.c +++ b/drivers/dfu/dfu.c @@ -55,6 +55,9 @@ int dfu_init_env_entities(char *interface, char *devstr) char *env_bkp; int ret; +#ifdef CONFIG_SET_DFU_ALT_INFO + set_dfu_alt_info(interface, devstr); +#endif str_env = getenv("dfu_alt_info"); if (!str_env) { error("\"dfu_alt_info\" env variable not defined!\n"); |