Removed unnecessary includes of config.h
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@426 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
parent
37bc41346d
commit
10272c5a55
|
@ -1,3 +1,7 @@
|
|||
2004-07-05 Jan-Hinnerk Reichert <hinni@despammed.com>
|
||||
* *.c, *.h: Removed unnecessary includes of
|
||||
config.h
|
||||
|
||||
2004-07-04 Jan-Hinnerk Reichert <hinni@despammed.com>
|
||||
* avr.h: Removed some unused prototypes
|
||||
|
||||
|
|
1
avr.c
1
avr.c
|
@ -30,7 +30,6 @@
|
|||
|
||||
|
||||
#include "avr.h"
|
||||
#include "config.h"
|
||||
#include "lists.h"
|
||||
#include "pindefs.h"
|
||||
#include "ppi.h"
|
||||
|
|
2
avr910.h
2
avr910.h
|
@ -22,7 +22,7 @@
|
|||
#ifndef __avr910_h__
|
||||
#define __avr910_h__
|
||||
|
||||
#include "config.h"
|
||||
#include "avrpart.h"
|
||||
|
||||
void avr910_initpgm (PROGRAMMER * pgm);
|
||||
|
||||
|
|
|
@ -26,6 +26,9 @@
|
|||
|
||||
#include "lists.h"
|
||||
|
||||
|
||||
extern LISTID part_list;
|
||||
|
||||
/*
|
||||
* AVR serial programming instructions
|
||||
*/
|
||||
|
|
|
@ -22,8 +22,6 @@
|
|||
#ifndef __butterfly_h__
|
||||
#define __butterfly_h__
|
||||
|
||||
#include "config.h"
|
||||
|
||||
void butterfly_initpgm (PROGRAMMER * pgm);
|
||||
|
||||
#endif /* __butterfly_h__ */
|
||||
|
|
2
config.h
2
config.h
|
@ -47,8 +47,6 @@ extern FILE * yyin;
|
|||
extern PROGRAMMER * current_prog;
|
||||
extern AVRPART * current_part;
|
||||
extern AVRMEM * current_mem;
|
||||
extern LISTID programmers;
|
||||
extern LISTID part_list;
|
||||
extern int lineno;
|
||||
extern char * infile;
|
||||
extern LISTID string_list;
|
||||
|
|
5
main.c
5
main.c
|
@ -50,7 +50,6 @@
|
|||
#include "lists.h"
|
||||
#include "par.h"
|
||||
#include "pindefs.h"
|
||||
#include "ppi.h"
|
||||
#include "term.h"
|
||||
|
||||
|
||||
|
@ -134,7 +133,7 @@ int getexitspecs(char *s, int *set, int *clr)
|
|||
else if (strcmp(cp, "noreset") == 0) {
|
||||
*set |= par_getpinmask(pgm->pinno[PIN_AVR_RESET]);
|
||||
}
|
||||
else if (strcmp(cp, "vcc") == 0) {
|
||||
else if (strcmp(cp, "vcc") == 0) {
|
||||
if (pgm->pinno[PPI_AVR_VCC])
|
||||
*set |= pgm->pinno[PPI_AVR_VCC];
|
||||
}
|
||||
|
@ -507,7 +506,7 @@ UPDATE * new_update(int op, char * memtype, int filefmt, char * filename)
|
|||
|
||||
|
||||
|
||||
int do_op(PROGRAMMER * pgm, struct avrpart * p, UPDATE * upd, int nowrite,
|
||||
int do_op(PROGRAMMER * pgm, struct avrpart * p, UPDATE * upd, int nowrite,
|
||||
int verify)
|
||||
{
|
||||
struct avrpart * v;
|
||||
|
|
2
par.h
2
par.h
|
@ -22,8 +22,6 @@
|
|||
#ifndef __par_h__
|
||||
#define __par_h__
|
||||
|
||||
#include "config.h"
|
||||
|
||||
void par_initpgm (PROGRAMMER * pgm);
|
||||
|
||||
int par_getpinmask(int pin);
|
||||
|
|
3
pgm.h
3
pgm.h
|
@ -35,6 +35,9 @@
|
|||
#define PGM_DESCLEN 80
|
||||
#define PGM_PORTLEN PATH_MAX
|
||||
#define PGM_TYPELEN 32
|
||||
|
||||
extern LISTID programmers;
|
||||
|
||||
typedef struct programmer_t {
|
||||
LISTID id;
|
||||
char desc[PGM_DESCLEN];
|
||||
|
|
2
ppi.h
2
ppi.h
|
@ -22,8 +22,6 @@
|
|||
#ifndef __ppi_h__
|
||||
#define __ppi_h__
|
||||
|
||||
#include "config.h"
|
||||
|
||||
/*
|
||||
* PPI registers
|
||||
*/
|
||||
|
|
2
serial.h
2
serial.h
|
@ -30,8 +30,6 @@
|
|||
#ifndef __serial_h__
|
||||
#define __serial_h__
|
||||
|
||||
#include "config.h"
|
||||
|
||||
extern int serial_open(char * port, long baud);
|
||||
extern void serial_close(int fd);
|
||||
|
||||
|
|
Loading…
Reference in New Issue