diff options
| author | Przemyslaw Marczak <[email protected]> | 2015-02-17 12:24:11 +0100 |
|---|---|---|
| committer | Marek Vasut <[email protected]> | 2015-02-25 17:47:02 +0100 |
| commit | 899a52821515d79f9e4e525fd3098bdb574062ed (patch) | |
| tree | c17b1bdc2f516a3a4332911018a72bb179073686 /include/dfu.h | |
| parent | 372d7decfe972966c49b337f3d2888e09004dbe4 (diff) | |
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 <[email protected]>
Tested-by: Lukasz Majewski <[email protected]>
[Test HW: Odroid U3 (Exynos 4412)]
Diffstat (limited to 'include/dfu.h')
| -rw-r--r-- | include/dfu.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/dfu.h b/include/dfu.h index c27856cb729..7d31abdf337 100644 --- a/include/dfu.h +++ b/include/dfu.h @@ -140,6 +140,9 @@ struct dfu_entity { unsigned int inited:1; }; +#ifdef CONFIG_SET_DFU_ALT_INFO +void set_dfu_alt_info(char *interface, char *devstr); +#endif int dfu_config_entities(char *s, char *interface, char *devstr); void dfu_free_entities(void); void dfu_show_entities(void); |
