aboutsummaryrefslogtreecommitdiff
path: root/src/flash/nor/at91sam3.c
diff options
context:
space:
mode:
authorAndreas Fritiofson <andreas.fritiofson@gmail.com>2013-09-21 18:39:01 +0200
committerSpencer Oliver <spen@spen-soft.co.uk>2013-10-03 09:22:34 +0000
commitcbf4760e15d217c0a83e65f13bddfcbfad7d2fec (patch)
tree2d943cc64ff9ed8e6c4236316c32690ddb949a61 /src/flash/nor/at91sam3.c
parentc8492ee2d468bcee8e2b7bb0560e6329c12a86e2 (diff)
downloadriscv-openocd-cbf4760e15d217c0a83e65f13bddfcbfad7d2fec.zip
riscv-openocd-cbf4760e15d217c0a83e65f13bddfcbfad7d2fec.tar.gz
riscv-openocd-cbf4760e15d217c0a83e65f13bddfcbfad7d2fec.tar.bz2
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>
Diffstat (limited to 'src/flash/nor/at91sam3.c')
-rw-r--r--src/flash/nor/at91sam3.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/flash/nor/at91sam3.c b/src/flash/nor/at91sam3.c
index 1bb549e..6fe71bf 100644
--- a/src/flash/nor/at91sam3.c
+++ b/src/flash/nor/at91sam3.c
@@ -3179,16 +3179,6 @@ static int sam3_protect(struct flash_bank *bank, int set, int first, int last)
}
-static int sam3_info(struct flash_bank *bank, char *buf, int buf_size)
-{
- if (bank->target->state != TARGET_HALTED) {
- LOG_ERROR("Target not halted");
- return ERROR_TARGET_NOT_HALTED;
- }
- buf[0] = 0;
- return ERROR_OK;
-}
-
static int sam3_page_read(struct sam3_bank_private *pPrivate, unsigned pagenum, uint8_t *buf)
{
uint32_t adr;
@@ -3733,5 +3723,4 @@ struct flash_driver at91sam3_flash = {
.auto_probe = sam3_auto_probe,
.erase_check = sam3_erase_check,
.protect_check = sam3_protect_check,
- .info = sam3_info,
};