flash/nor: Make info function optional
Remove lots of no-op or dummy info function implementations and check if it's implemented before invoking it. Change-Id: I2144dad6a84a80359bb13a8a29a4614387e4c135 Signed-off-by: Andreas Fritiofson <andreas.fritiofson@gmail.com> Reviewed-on: http://openocd.zylin.com/1642 Tested-by: jenkins Reviewed-by: Spencer Oliver <spen@spen-soft.co.uk>
This commit is contained in:
committed by
Spencer Oliver
parent
c8492ee2d4
commit
cbf4760e15
@@ -321,11 +321,6 @@ static int ocl_probe(struct flash_bank *bank)
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
||||
static int ocl_info(struct flash_bank *bank, char *buf, int buf_size)
|
||||
{
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
||||
static int ocl_auto_probe(struct flash_bank *bank)
|
||||
{
|
||||
struct ocl_priv *ocl = bank->driver_priv;
|
||||
@@ -346,6 +341,5 @@ struct flash_driver ocl_flash = {
|
||||
.probe = ocl_probe,
|
||||
.erase_check = ocl_erase_check,
|
||||
.protect_check = ocl_protect_check,
|
||||
.info = ocl_info,
|
||||
.auto_probe = ocl_auto_probe,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user