mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 01:31:44 +00:00
Staging: xgifb: Remove XGI_LCD_TYPE and XGI_VB_CHIP_TYPE typedefs
There is no need for these to be typedefs as a simple enum will do. Signed-off-by: Bill Pemberton <wfp5p@virginia.edu> Cc: Arnaud Patard <apatard@mandriva.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
108afbf8ae
commit
621a683fe8
@ -9,7 +9,7 @@
|
||||
#endif
|
||||
|
||||
#ifndef XGI_VB_CHIP_TYPE
|
||||
typedef enum _XGI_VB_CHIP_TYPE {
|
||||
enum XGI_VB_CHIP_TYPE {
|
||||
VB_CHIP_Legacy = 0,
|
||||
VB_CHIP_301,
|
||||
VB_CHIP_301B,
|
||||
@ -21,11 +21,11 @@ typedef enum _XGI_VB_CHIP_TYPE {
|
||||
VB_CHIP_302ELV,
|
||||
VB_CHIP_UNKNOWN, /* other video bridge or no video bridge */
|
||||
MAX_VB_CHIP
|
||||
} XGI_VB_CHIP_TYPE;
|
||||
};
|
||||
#endif
|
||||
|
||||
#ifndef XGI_LCD_TYPE
|
||||
typedef enum _XGI_LCD_TYPE {
|
||||
enum XGI_LCD_TYPE {
|
||||
LCD_INVALID = 0,
|
||||
LCD_320x480, /* FSTN, DSTN */
|
||||
LCD_640x480,
|
||||
@ -49,7 +49,7 @@ typedef enum _XGI_LCD_TYPE {
|
||||
LCD_2048x1536,
|
||||
LCD_CUSTOM,
|
||||
LCD_UNKNOWN
|
||||
} XGI_LCD_TYPE;
|
||||
};
|
||||
#endif
|
||||
|
||||
#ifndef PXGI_DSReg
|
||||
|
Loading…
Reference in New Issue
Block a user