* avr910.c (avr910_read_byte_flash): Eliminate a static variable that
hasn't been in use for 5 years. git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk@814 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
parent
acf6f3060b
commit
e293f2b5a2
|
@ -1,3 +1,8 @@
|
||||||
|
2009-02-28 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
||||||
|
|
||||||
|
* avr910.c (avr910_read_byte_flash): Eliminate a static variable that
|
||||||
|
hasn't been in use for 5 years.
|
||||||
|
|
||||||
2009-02-27 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
2009-02-27 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
||||||
|
|
||||||
* configure.ac: Post-release 5.6.
|
* configure.ac: Post-release 5.6.
|
||||||
|
|
|
@ -457,15 +457,6 @@ static int avr910_write_byte(PROGRAMMER * pgm, AVRPART * p, AVRMEM * m,
|
||||||
static int avr910_read_byte_flash(PROGRAMMER * pgm, AVRPART * p, AVRMEM * m,
|
static int avr910_read_byte_flash(PROGRAMMER * pgm, AVRPART * p, AVRMEM * m,
|
||||||
unsigned long addr, unsigned char * value)
|
unsigned long addr, unsigned char * value)
|
||||||
{
|
{
|
||||||
static int cached = 0;
|
|
||||||
static unsigned char cvalue;
|
|
||||||
static unsigned long caddr;
|
|
||||||
|
|
||||||
if (cached && ((caddr + 1) == addr)) {
|
|
||||||
*value = cvalue;
|
|
||||||
cached = 0;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
char buf[2];
|
char buf[2];
|
||||||
|
|
||||||
avr910_set_addr(pgm, addr >> 1);
|
avr910_set_addr(pgm, addr >> 1);
|
||||||
|
@ -477,14 +468,10 @@ static int avr910_read_byte_flash(PROGRAMMER * pgm, AVRPART * p, AVRMEM * m,
|
||||||
|
|
||||||
if ((addr & 0x01) == 0) {
|
if ((addr & 0x01) == 0) {
|
||||||
*value = buf[1];
|
*value = buf[1];
|
||||||
// cached = 1;
|
|
||||||
cvalue = buf[0];
|
|
||||||
caddr = addr;
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
*value = buf[0];
|
*value = buf[0];
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue