make Doxygen happy by giving the private data structure a unique name

This commit is contained in:
marschap
2008-12-21 17:02:04 +00:00
parent 92df94302b
commit 72d5042683
2 changed files with 37 additions and 38 deletions
+9 -10
View File
@@ -267,23 +267,22 @@
#define SCR2_L 0x00
#define SCR2_H 0x06
typedef struct p {
// display type
int type;
/** private data for the \c sed1330 driver */
typedef struct sed1330_private_data {
int type; /**< display type */
// wiring scheme variables to be set by sed1330_init()
int A0;
int A0;
int nRESET;
int nWR;
// which lpt port to use
int port;
int port; /**< LPT port to use */
unsigned char * framebuf_text;
unsigned char * lcd_contents_text;
unsigned char * framebuf_graph;
unsigned char * lcd_contents_graph;
unsigned char *framebuf_text;
unsigned char *lcd_contents_text;
unsigned char *framebuf_graph;
unsigned char *lcd_contents_graph;
int width, height;
int cellwidth, cellheight;