public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/24] drivers/block/floppy.c cleanups
@ 2010-01-22  4:52 Joe Perches
  2010-01-22  4:52 ` [PATCH 01/24] drivers/block/floppy.c: Convert some #include <asm/ to #include <linux/ Joe Perches
                   ` (24 more replies)
  0 siblings, 25 replies; 28+ messages in thread
From: Joe Perches @ 2010-01-22  4:52 UTC (permalink / raw)
  To: linux-kernel
  Cc: Marcin Slusarz, Stephen Hemminger, Bartlomiej Zolnierkiewicz,
	Andrew Morton

Since Stephen Hemminger is a bit too busy to do much with this
I've broken up the first large patch into multiple pieces and
brought the rest up to current.

I dropped the c99 conversions because Bartlomiej Zolnierkiewicz
objected.

This applies against Linus' and -next.

Maybe somebody will decide it's useful.

Original submissions:
http://lkml.org/lkml/2009/11/30/511
http://lkml.org/lkml/2009/12/2/14

Joe Perches (24):
  drivers/block/floppy.c: Convert some #include <asm/ to #include <linux/
  drivers/block/floppy.c: #define space and column neatening
  drivers/block/floppy.c: Use pr_<level>
  drivers/block/floppy.c: Remove unnecessary braces
  drivers/block/floppy.c: Remove used once CHECK_READY macro
  drivers/block/floppy.c: Hoist assigns from if()s, neatening
  drivers/block/floppy.c: Remove LAST_OUT macro
  drivers/block/floppy.c: Comment neatening and remove naked ;
  drivers/block/floppy.c: Remove CLEARSTRUCT macro, use memset
  drivers/block/floppy.c: Indent a comment
  drivers/block/floppy.c: Remove IN/OUT macros, indent switch/case
  drivers/block/floppy.c: Remove a few spaces from function casts
  drivers/block/floppy.c: Remove macro LOCK_FDC
  drivers/block/floppy.c: Add debug_dcl(...) macro
  drivers/block/floppy.c: Remove [U]CLEARF, [U]SETF, and [U]TESTF macros
  drivers/block/floppy.c: Remove most uses of CALL and ECALL macros
  drivers/block/floppy.c: remove [_]COPYIN [_]COPYOUT and ECALL macros
  drivers/block/floppy.c: remove macros CALL, WAIT and IWAIT
  drivers/block/floppy.c: convert int 1/0 to bool true/false
  drivers/block/floppy.c: Move leading && and || to preceding line
  drivers/block/floppy.c: remove #define DEVICE_NAME "floppy"
  drivers/block/floppy.c: Convert int initialising to bool initialized
  drivers/block/floppy.c: Add function is_ready_state
  drivers/block/floppy.c: Remove unnecessary return and braces

 drivers/block/floppy.c | 1219 ++++++++++++++++++++++++------------------------
 1 files changed, 618 insertions(+), 601 deletions(-)


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

end of thread, other threads:[~2010-01-22 17:05 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-22  4:52 [PATCH 00/24] drivers/block/floppy.c cleanups Joe Perches
2010-01-22  4:52 ` [PATCH 01/24] drivers/block/floppy.c: Convert some #include <asm/ to #include <linux/ Joe Perches
2010-01-22  4:52 ` [PATCH 02/24] drivers/block/floppy.c: #define space and column neatening Joe Perches
2010-01-22  4:52 ` [PATCH 03/24] drivers/block/floppy.c: Use pr_<level> Joe Perches
2010-01-22  4:52 ` [PATCH 04/24] drivers/block/floppy.c: Remove unnecessary braces Joe Perches
2010-01-22  4:52 ` [PATCH 05/24] drivers/block/floppy.c: Remove used once CHECK_READY macro Joe Perches
2010-01-22  4:52 ` [PATCH 06/24] drivers/block/floppy.c: Hoist assigns from if()s, neatening Joe Perches
2010-01-22  4:52 ` [PATCH 07/24] drivers/block/floppy.c: Remove LAST_OUT macro Joe Perches
2010-01-22  4:52 ` [PATCH 08/24] drivers/block/floppy.c: Comment neatening and remove naked ; Joe Perches
2010-01-22  4:52 ` [PATCH 09/24] drivers/block/floppy.c: Remove CLEARSTRUCT macro, use memset Joe Perches
2010-01-22  4:52 ` [PATCH 10/24] drivers/block/floppy.c: Indent a comment Joe Perches
2010-01-22  4:52 ` [PATCH 11/24] drivers/block/floppy.c: Remove IN/OUT macros, indent switch/case Joe Perches
2010-01-22  4:52 ` [PATCH 12/24] drivers/block/floppy.c: Remove a few spaces from function casts Joe Perches
2010-01-22  4:52 ` [PATCH 13/24] drivers/block/floppy.c: Remove macro LOCK_FDC Joe Perches
2010-01-22  4:52 ` [PATCH 14/24] drivers/block/floppy.c: Add debug_dcl(...) macro Joe Perches
2010-01-22  4:52 ` [PATCH 15/24] drivers/block/floppy.c: Remove [U]CLEARF, [U]SETF, and [U]TESTF macros Joe Perches
2010-01-22  4:52 ` [PATCH 16/24] drivers/block/floppy.c: Remove most uses of CALL and ECALL macros Joe Perches
2010-01-22  4:52 ` [PATCH 17/24] drivers/block/floppy.c: remove [_]COPYIN [_]COPYOUT " Joe Perches
2010-01-22  4:52 ` [PATCH 18/24] drivers/block/floppy.c: remove macros CALL, WAIT and IWAIT Joe Perches
2010-01-22  4:52 ` [PATCH 19/24] drivers/block/floppy.c: convert int 1/0 to bool true/false Joe Perches
2010-01-22  4:52 ` [PATCH 20/24] drivers/block/floppy.c: Move leading && and || to preceding line Joe Perches
2010-01-22  4:52 ` [PATCH 21/24] drivers/block/floppy.c: remove #define DEVICE_NAME "floppy" Joe Perches
2010-01-22  4:52 ` [PATCH 22/24] drivers/block/floppy.c: Convert int initialising to bool initialized Joe Perches
2010-01-22  4:52 ` [PATCH 23/24] drivers/block/floppy.c: Add function is_ready_state Joe Perches
2010-01-22  4:52 ` [PATCH 24/24] drivers/block/floppy.c: Remove unnecessary return and braces Joe Perches
2010-01-22 10:47 ` [PATCH 00/24] drivers/block/floppy.c cleanups Andi Kleen
2010-01-22 11:46   ` Alan Cox
2010-01-22 17:04     ` Stephen Hemminger

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