mirror of
https://github.com/torvalds/linux.git
synced 2024-12-02 17:11:33 +00:00
[PATCH] Char: istallion, eliminate typedefs
Use only struct <name> instead of defining a new type <name_t>. Signed-off-by: Jiri Slaby <jirislaby@gmail.com> Cc: Alan Cox <alan@lxorguk.ukuu.org.uk> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
a3f8d9d5e1
commit
1f8ec435e3
File diff suppressed because it is too large
Load Diff
@ -49,7 +49,7 @@
|
|||||||
* communication with the slave board will always be on a per port
|
* communication with the slave board will always be on a per port
|
||||||
* basis.
|
* basis.
|
||||||
*/
|
*/
|
||||||
typedef struct {
|
struct stliport {
|
||||||
unsigned long magic;
|
unsigned long magic;
|
||||||
int portnr;
|
int portnr;
|
||||||
int panelnr;
|
int panelnr;
|
||||||
@ -72,7 +72,7 @@ typedef struct {
|
|||||||
wait_queue_head_t close_wait;
|
wait_queue_head_t close_wait;
|
||||||
wait_queue_head_t raw_wait;
|
wait_queue_head_t raw_wait;
|
||||||
struct work_struct tqhangup;
|
struct work_struct tqhangup;
|
||||||
asysigs_t asig;
|
struct asysigs asig;
|
||||||
unsigned long addr;
|
unsigned long addr;
|
||||||
unsigned long rxoffset;
|
unsigned long rxoffset;
|
||||||
unsigned long txoffset;
|
unsigned long txoffset;
|
||||||
@ -83,13 +83,13 @@ typedef struct {
|
|||||||
unsigned char reqbit;
|
unsigned char reqbit;
|
||||||
unsigned char portidx;
|
unsigned char portidx;
|
||||||
unsigned char portbit;
|
unsigned char portbit;
|
||||||
} stliport_t;
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Use a structure of function pointers to do board level operations.
|
* Use a structure of function pointers to do board level operations.
|
||||||
* These include, enable/disable, paging shared memory, interrupting, etc.
|
* These include, enable/disable, paging shared memory, interrupting, etc.
|
||||||
*/
|
*/
|
||||||
typedef struct stlibrd {
|
struct stlibrd {
|
||||||
unsigned long magic;
|
unsigned long magic;
|
||||||
int brdnr;
|
int brdnr;
|
||||||
int brdtype;
|
int brdtype;
|
||||||
@ -116,8 +116,8 @@ typedef struct stlibrd {
|
|||||||
void __iomem *(*getmemptr)(struct stlibrd *brdp, unsigned long offset, int line);
|
void __iomem *(*getmemptr)(struct stlibrd *brdp, unsigned long offset, int line);
|
||||||
void (*intr)(struct stlibrd *brdp);
|
void (*intr)(struct stlibrd *brdp);
|
||||||
void (*reset)(struct stlibrd *brdp);
|
void (*reset)(struct stlibrd *brdp);
|
||||||
stliport_t *ports[STL_MAXPORTS];
|
struct stliport *ports[STL_MAXPORTS];
|
||||||
} stlibrd_t;
|
};
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user