summaryrefslogtreecommitdiff
path: root/src/flash/nor/drivers.c
diff options
context:
space:
mode:
authorRodrigo L. Rosa <rodrigorosa.lg@gmail.com>2011-05-17 19:41:21 -0700
committerØyvind Harboe <oyvind.harboe@zylin.com>2011-05-18 18:47:55 +0200
commit129f099ef19dd2082d3903600303fe5f4a2c4486 (patch)
tree53ae4bb8e1ccf8f43c8d740ba91e4790fc3c0e37 /src/flash/nor/drivers.c
parent9d4aec6bda90ad39a140747ea270c6a09dd26440 (diff)
downloadopenocd+libswd-129f099ef19dd2082d3903600303fe5f4a2c4486.tar.gz
openocd+libswd-129f099ef19dd2082d3903600303fe5f4a2c4486.tar.bz2
openocd+libswd-129f099ef19dd2082d3903600303fe5f4a2c4486.tar.xz
openocd+libswd-129f099ef19dd2082d3903600303fe5f4a2c4486.zip
flash support (only full erase/write) for 568013 and 568037
Diffstat (limited to 'src/flash/nor/drivers.c')
-rw-r--r--src/flash/nor/drivers.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/flash/nor/drivers.c b/src/flash/nor/drivers.c
index 5489419f..52febf17 100644
--- a/src/flash/nor/drivers.c
+++ b/src/flash/nor/drivers.c
@@ -43,6 +43,7 @@ extern struct flash_driver faux_flash;
extern struct flash_driver virtual_flash;
extern struct flash_driver stmsmi_flash;
extern struct flash_driver em357_flash;
+extern struct flash_driver dsp5680xx_flash;
/**
* The list of built-in flash drivers.
@@ -71,6 +72,7 @@ static struct flash_driver *flash_drivers[] = {
&virtual_flash,
&stmsmi_flash,
&em357_flash,
+ &dsp5680xx_flash,
NULL,
};