Move par_desc[] to end of file, outside the #if HAVE_PARPORT.
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@1058 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
parent
bc83547bf1
commit
c4c6734f16
|
@ -1,3 +1,8 @@
|
||||||
|
2012-02-03 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
||||||
|
|
||||||
|
* par.c (par_desc): Move to end of file, outside the #if
|
||||||
|
HAVE_PARPORT
|
||||||
|
|
||||||
2012-02-02 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
2012-02-02 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
||||||
|
|
||||||
Implement ELF file reading (finally). Requires libelf(3) to be
|
Implement ELF file reading (finally). Requires libelf(3) to be
|
||||||
|
|
4
par.c
4
par.c
|
@ -353,8 +353,6 @@ static int par_parseexitspecs(PROGRAMMER * pgm, char *s)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
const char par_desc[] = "Parallel port bitbanging";
|
|
||||||
|
|
||||||
void par_initpgm(PROGRAMMER * pgm)
|
void par_initpgm(PROGRAMMER * pgm)
|
||||||
{
|
{
|
||||||
strcpy(pgm->type, "PPI");
|
strcpy(pgm->type, "PPI");
|
||||||
|
@ -398,3 +396,5 @@ void par_initpgm(PROGRAMMER * pgm)
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* HAVE_PARPORT */
|
#endif /* HAVE_PARPORT */
|
||||||
|
|
||||||
|
const char par_desc[] = "Parallel port bitbanging";
|
||||||
|
|
Loading…
Reference in New Issue