2009-07-21 Roxana Leontie <roxana.leontie@gmail.com>

* console/fb_vga.c: replaced the ioctl structures with linux
	framebuffer equivalents
This commit is contained in:
Joel Sherrill
2009-07-21 15:48:34 +00:00
parent db862461cb
commit b58c04905b
2 changed files with 8 additions and 3 deletions

View File

@@ -1,3 +1,8 @@
2009-07-21 Roxana Leontie <roxana.leontie@gmail.com>
* console/fb_vga.c: replaced the ioctl structures with linux
framebuffer equivalents
2009-07-16 Joel Sherrill <joel.sherrill@oarcorp.com>
* configure.ac: Rename BSP_BOOTCARD_OPTIONS to

View File

@@ -182,13 +182,13 @@ fbvga_control( rtems_device_major_number major,
printk( "FBVGA ioctl called, cmd=%x\n", args->command );
switch( args->command )
{
case FB_SCREENINFO:
case FBIOGET_FSCREENINFO:
args->ioctl_return = get_screen_info( args->buffer );
break;
case FB_GETPALETTE:
case FBIOGETCMAP:
args->ioctl_return = get_palette( args->buffer );
break;
case FB_SETPALETTE:
case FBIOPUTCMAP:
args->ioctl_return = set_palette( args->buffer );
break;