public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/22] staging: xgifb: more cleanups
@ 2011-03-10 21:02 Aaro Koskinen
  2011-03-10 21:02 ` [PATCH 01/22] staging: xgifb: vb_ext: move functions to avoid forward declarations Aaro Koskinen
                   ` (21 more replies)
  0 siblings, 22 replies; 25+ messages in thread
From: Aaro Koskinen @ 2011-03-10 21:02 UTC (permalink / raw)
  To: gregkh, devel, linux-kernel, arnaud.patard

Hello,

Here's another batch of cleanups. I hope the series is not too big,
most of the changes are just mechanical.

Testing:
	- compile-tested with GCC 4.5.2, no warnings
	- tested with Z9 (XG21) on ARM, framebuffer console works

Aaro Koskinen (22):
  staging: xgifb: vb_ext: move functions to avoid forward declarations
  staging: xgifb: vb_init: move functions to avoid forward declarations
  staging: xgifb: vb_setmode: move functions to avoid forward
    declarations
  staging: xgifb: delete unsupported chip types
  staging: xgifb: delete dead code for chip types < XG40
  staging: xgifb: eliminate redudant chip type >= XG40 checks
  staging: xgifb: delete unused LINUXBIOS code
  staging: xgifb: delete redundant extended register access enable
  staging: xgifb: delete incorrect I/O mapping
  staging: xgifb: use mdelay() for millisecond delays
  staging: xgifb: replace DelayUS() with udelay()
  staging: xgifb: vb_util: include the .h file
  staging: xgifb: vb_util: delete commented-out code
  staging: xgifb: replace XGINew_GetReg2() with inb()
  staging: xgifb: replace XGINew_GetReg3() with inl()
  staging: xgifb: replace XGINew_SetReg3() with outb()
  staging: xgifb: replace XGINew_SetReg4() with outl()
  staging: xgifb: rename XGINew_SetReg1() to xgifb_reg_set()
  staging: xgifb: rename XGINew_GetReg1() to xgifb_reg_get()
  staging: xgifb: rename XGINew_SetRegOR() to xgifb_reg_or()
  staging: xgifb: rename XGINew_SetRegANDOR() to xgifb_reg_and_or()
  staging: xgifb: rename XGINew_SetRegAND() to xgifb_reg_and()

 drivers/staging/xgifb/XGI_main.h    |    3 -
 drivers/staging/xgifb/XGI_main_26.c |   76 +-
 drivers/staging/xgifb/XGIfb.h       |   18 -
 drivers/staging/xgifb/vb_ext.c      |  354 +--
 drivers/staging/xgifb/vb_init.c     | 1507 +++++-----
 drivers/staging/xgifb/vb_setmode.c  | 5842 ++++++++++++++++-------------------
 drivers/staging/xgifb/vb_table.h    |   23 -
 drivers/staging/xgifb/vb_util.c     |  124 +-
 drivers/staging/xgifb/vb_util.h     |   16 +-
 9 files changed, 3680 insertions(+), 4283 deletions(-)


^ permalink raw reply	[flat|nested] 25+ messages in thread

end of thread, other threads:[~2011-03-12 15:23 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-10 21:02 [PATCH 00/22] staging: xgifb: more cleanups Aaro Koskinen
2011-03-10 21:02 ` [PATCH 01/22] staging: xgifb: vb_ext: move functions to avoid forward declarations Aaro Koskinen
2011-03-10 21:02 ` [PATCH 02/22] staging: xgifb: vb_init: " Aaro Koskinen
2011-03-10 21:02 ` [PATCH 03/22] staging: xgifb: vb_setmode: " Aaro Koskinen
2011-03-10 21:02 ` [PATCH 04/22] staging: xgifb: delete unsupported chip types Aaro Koskinen
2011-03-10 21:02 ` [PATCH 05/22] staging: xgifb: delete dead code for chip types < XG40 Aaro Koskinen
2011-03-10 21:02 ` [PATCH 06/22] staging: xgifb: eliminate redudant chip type >= XG40 checks Aaro Koskinen
2011-03-10 21:02 ` [PATCH 07/22] staging: xgifb: delete unused LINUXBIOS code Aaro Koskinen
2011-03-10 21:02 ` [PATCH 08/22] staging: xgifb: delete redundant extended register access enable Aaro Koskinen
2011-03-10 21:02 ` [PATCH 09/22] staging: xgifb: delete incorrect I/O mapping Aaro Koskinen
2011-03-10 21:02 ` [PATCH 10/22] staging: xgifb: use mdelay() for millisecond delays Aaro Koskinen
2011-03-10 21:02 ` [PATCH 11/22] staging: xgifb: replace DelayUS() with udelay() Aaro Koskinen
2011-03-10 21:02 ` [PATCH 12/22] staging: xgifb: vb_util: include the .h file Aaro Koskinen
2011-03-10 21:02 ` [PATCH 13/22] staging: xgifb: vb_util: delete commented-out code Aaro Koskinen
2011-03-10 21:02 ` [PATCH 14/22] staging: xgifb: replace XGINew_GetReg2() with inb() Aaro Koskinen
2011-03-10 21:02 ` [PATCH 15/22] staging: xgifb: replace XGINew_GetReg3() with inl() Aaro Koskinen
2011-03-10 21:02 ` [PATCH 16/22] staging: xgifb: replace XGINew_SetReg3() with outb() Aaro Koskinen
2011-03-10 21:02 ` [PATCH 17/22] staging: xgifb: replace XGINew_SetReg4() with outl() Aaro Koskinen
2011-03-10 21:02 ` [PATCH 18/22] staging: xgifb: rename XGINew_SetReg1() to xgifb_reg_set() Aaro Koskinen
2011-03-10 21:02 ` [PATCH 19/22] staging: xgifb: rename XGINew_GetReg1() to xgifb_reg_get() Aaro Koskinen
2011-03-10 21:02 ` [PATCH 20/22] staging: xgifb: rename XGINew_SetRegOR() to xgifb_reg_or() Aaro Koskinen
2011-03-10 21:02 ` [PATCH 21/22] staging: xgifb: rename XGINew_SetRegANDOR() to xgifb_reg_and_or() Aaro Koskinen
2011-03-11 21:37   ` Dan Carpenter
2011-03-12 15:23     ` Aaro Koskinen
2011-03-10 21:02 ` [PATCH 22/22] staging: xgifb: rename XGINew_SetRegAND() to xgifb_reg_and() Aaro Koskinen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox