Skip to content
Snippets Groups Projects
Commit a6f953ba authored by oharboe's avatar oharboe
Browse files

Zach Welch <zw@superlucidity.net> trim logic in tms470.c

git-svn-id: svn://svn.berlios.de/openocd/trunk@1467 b42882b7-edfa-0310-969c-e2dbd0fdcd60
parent a88532bc
No related branches found
No related tags found
No related merge requests found
......@@ -196,7 +196,7 @@ static int tms470_read_part_info(struct flash_bank_s *bank)
case 0x2b:
part_name = "TMS470R1A288";
if ((bank->base >= 0x00000000) && (bank->base < 0x00008000))
if (bank->base < 0x00008000)
{
tms470_info->ordinal = 0;
bank->base = 0x00000000;
......@@ -232,7 +232,7 @@ static int tms470_read_part_info(struct flash_bank_s *bank)
case 0x2d:
part_name = "TMS470R1A384";
if ((bank->base >= 0x00000000) && (bank->base < 0x00020000))
if (bank->base < 0x00020000)
{
tms470_info->ordinal = 0;
bank->base = 0x00000000;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment