summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/i386/pc386/console/fb_vga.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/i386/pc386/console/fb_vga.c')
-rw-r--r--c/src/lib/libbsp/i386/pc386/console/fb_vga.c12
1 files changed, 3 insertions, 9 deletions
diff --git a/c/src/lib/libbsp/i386/pc386/console/fb_vga.c b/c/src/lib/libbsp/i386/pc386/console/fb_vga.c
index 8c678b8081..57e45097f5 100644
--- a/c/src/lib/libbsp/i386/pc386/console/fb_vga.c
+++ b/c/src/lib/libbsp/i386/pc386/console/fb_vga.c
@@ -11,6 +11,9 @@
// MODIFICATION/HISTORY:
//
// $Log$
+// Revision 1.2 2004/04/21 10:42:44 ralf
+// Remove stray white spaces.
+//
// Revision 1.1 2000/08/30 08:15:30 joel
// 2000-08-26 Rosimildo da Silva <rdasilva@connecttel.com>
//
@@ -66,7 +69,6 @@
extern void ega_hwinit( void );
extern void ega_hwterm( void );
-
/* screen information for the VGA driver */
static struct fb_screeninfo fb_info =
{
@@ -79,7 +81,6 @@ static struct fb_screeninfo fb_info =
FB_VISUAL_PSEUDOCOLOR /* color scheme used */
};
-
static __u16 red16[] = {
0x0000, 0x0000, 0x0000, 0x0000, 0xaaaa, 0xaaaa, 0xaaaa, 0xaaaa,
0x5555, 0x5555, 0x5555, 0x5555, 0xffff, 0xffff, 0xffff, 0xffff
@@ -116,7 +117,6 @@ fbvga_initialize( rtems_device_major_number major,
return RTEMS_SUCCESSFUL;
}
-
/*
* fbvga device driver OPEN entry point
*/
@@ -142,7 +142,6 @@ fbvga_close(rtems_device_major_number major,
return RTEMS_SUCCESSFUL;
}
-
/*
* fbvga device driver READ entry point.
* Read characters from the PS/2 mouse.
@@ -158,7 +157,6 @@ fbvga_read( rtems_device_major_number major,
return RTEMS_SUCCESSFUL;
}
-
/*
* fbvga device driver WRITE entry point.
* Write characters to the PS/2 mouse.
@@ -174,14 +172,12 @@ fbvga_write( rtems_device_major_number major,
return RTEMS_SUCCESSFUL;
}
-
static int get_screen_info( struct fb_screeninfo *info )
{
*info = fb_info;
return 0;
}
-
static int get_palette( struct fb_cmap *cmap )
{
__u32 i;
@@ -198,7 +194,6 @@ static int get_palette( struct fb_cmap *cmap )
return 0;
}
-
static int set_palette( struct fb_cmap *cmap )
{
__u32 i;
@@ -215,7 +210,6 @@ static int set_palette( struct fb_cmap *cmap )
return 0;
}
-
/*
* IOCTL entry point -- This method is called to carry
* all services of this interface.