X-Git-Url: https://review.openocd.org/gitweb?a=blobdiff_plain;f=src%2Fflash%2Fnor%2Fdsp5680xx_flash.c;h=9368d892c3296d42d9671e6bed14ab58aebc0901;hb=f132fcf636361009b4125827351ef01556d49b31;hp=eb2f3e1b3782478f7523c1355ab3bb12fae235c8;hpb=9f0cba528a163645c8ecace413731c23310f2c26;p=openocd.git diff --git a/src/flash/nor/dsp5680xx_flash.c b/src/flash/nor/dsp5680xx_flash.c index eb2f3e1b37..9368d892c3 100644 --- a/src/flash/nor/dsp5680xx_flash.c +++ b/src/flash/nor/dsp5680xx_flash.c @@ -20,7 +20,7 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * ***************************************************************************/ /** @@ -45,10 +45,6 @@ #include #include -struct dsp5680xx_flash_bank { - struct working_area *write_algorithm; -}; - static int dsp5680xx_build_sector_list(struct flash_bank *bank) { uint32_t offset = HFM_FLASH_BASE_ADDR; @@ -71,13 +67,8 @@ static int dsp5680xx_build_sector_list(struct flash_bank *bank) /* flash bank dsp5680xx 0 0 0 0 */ FLASH_BANK_COMMAND_HANDLER(dsp5680xx_flash_bank_command) { - struct dsp5680xx_flash_bank *nbank; - - nbank = malloc(sizeof(struct dsp5680xx_flash_bank)); - bank->base = HFM_FLASH_BASE_ADDR; bank->size = HFM_SIZE_BYTES; /* top 4k not accessible */ - bank->driver_priv = nbank; bank->num_sectors = HFM_SECTOR_COUNT; dsp5680xx_build_sector_list(bank); @@ -202,14 +193,6 @@ static int dsp5680xx_probe(struct flash_bank *bank) return ERROR_OK; } -static int dsp5680xx_flash_info(struct flash_bank *bank, char *buf, - int buf_size) -{ - snprintf(buf, buf_size, - "\ndsp5680xx flash driver info:\n - See comments in code."); - return ERROR_OK; -} - /** * The flash module (FM) on the dsp5680xx supports both individual sector * and mass erase of the flash memory. @@ -286,5 +269,4 @@ struct flash_driver dsp5680xx_flash = { .auto_probe = dsp5680xx_probe, .erase_check = dsp5680xx_flash_erase_check, .protect_check = dsp5680xx_flash_protect_check, - .info = dsp5680xx_flash_info };