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:
Joerg Wunsch 2012-02-03 07:21:39 +00:00
parent bc83547bf1
commit c4c6734f16
2 changed files with 7 additions and 2 deletions

View File

@ -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>
Implement ELF file reading (finally). Requires libelf(3) to be

4
par.c
View File

@ -353,8 +353,6 @@ static int par_parseexitspecs(PROGRAMMER * pgm, char *s)
return 0;
}
const char par_desc[] = "Parallel port bitbanging";
void par_initpgm(PROGRAMMER * pgm)
{
strcpy(pgm->type, "PPI");
@ -398,3 +396,5 @@ void par_initpgm(PROGRAMMER * pgm)
}
#endif /* HAVE_PARPORT */
const char par_desc[] = "Parallel port bitbanging";