[PATCH 03/26] aha152x: Debug output update and whitespace cleanup

2014-10-07 Thread Hannes Reinecke
Remove all uncommented debugging code and move all
printk() statements over to dev_printk().
And while we're at it we should be doing a whitespace
cleanup, too.

Reviewed-by: Robert Elliott 
Reviewed-by: Christoph Hellwig 
Signed-off-by: Hannes Reinecke 
---
 drivers/scsi/aha152x.c | 994 +++--
 1 file changed, 224 insertions(+), 770 deletions(-)

diff --git a/drivers/scsi/aha152x.c b/drivers/scsi/aha152x.c
index e77b72f..2b960b3 100644
--- a/drivers/scsi/aha152x.c
+++ b/drivers/scsi/aha152x.c
@@ -230,7 +230,7 @@
  *
  *
  **
- 
+
  see Documentation/scsi/aha152x.txt for configuration details
 
  **/
@@ -279,45 +279,11 @@ static LIST_HEAD(aha152x_host_list);
 #error define AUTOCONF or SETUP0
 #endif
 
-#if defined(AHA152X_DEBUG)
-#define DEBUG_DEFAULT debug_eh
-
-#define DPRINTK(when,msgs...) \
-   do { if(HOSTDATA(shpnt)->debug & (when)) printk(msgs); } while(0)
-
-#define DO_LOCK(flags) \
-   do { \
-   if(spin_is_locked(&QLOCK)) { \
-   DPRINTK(debug_intr, DEBUG_LEAD "(%s:%d) already locked 
at %s:%d\n", CMDINFO(CURRENT_SC), __func__, __LINE__, QLOCKER, QLOCKERL); \
-   } \
-   DPRINTK(debug_locking, DEBUG_LEAD "(%s:%d) locking\n", 
CMDINFO(CURRENT_SC), __func__, __LINE__); \
-   spin_lock_irqsave(&QLOCK,flags); \
-   DPRINTK(debug_locking, DEBUG_LEAD "(%s:%d) locked\n", 
CMDINFO(CURRENT_SC), __func__, __LINE__); \
-   QLOCKER=__func__; \
-   QLOCKERL=__LINE__; \
-   } while(0)
-
-#define DO_UNLOCK(flags)   \
-   do { \
-   DPRINTK(debug_locking, DEBUG_LEAD "(%s:%d) unlocking (locked at 
%s:%d)\n", CMDINFO(CURRENT_SC), __func__, __LINE__, QLOCKER, QLOCKERL); \
-   spin_unlock_irqrestore(&QLOCK,flags); \
-   DPRINTK(debug_locking, DEBUG_LEAD "(%s:%d) unlocked\n", 
CMDINFO(CURRENT_SC), __func__, __LINE__); \
-   QLOCKER="(not locked)"; \
-   QLOCKERL=0; \
-   } while(0)
-
-#else
-#define DPRINTK(when,msgs...)
 #defineDO_LOCK(flags)  spin_lock_irqsave(&QLOCK,flags)
 #defineDO_UNLOCK(flags)spin_unlock_irqrestore(&QLOCK,flags)
-#endif
 
 #define LEAD   "(scsi%d:%d:%d) "
-#define WARN_LEAD  KERN_WARNINGLEAD
 #define INFO_LEAD  KERN_INFO   LEAD
-#define NOTE_LEAD  KERN_NOTICE LEAD
-#define ERR_LEAD   KERN_ERRLEAD
-#define DEBUG_LEAD KERN_DEBUG  LEAD
 #define CMDINFO(cmd) \
(cmd) ? ((cmd)->device->host->host_no) : -1, \
 (cmd) ? ((cmd)->device->id & 0x0f) : -1, \
@@ -345,10 +311,10 @@ CMD_INC_RESID(struct scsi_cmnd *cmd, int inc)
 
 enum {
not_issued  = 0x0001,   /* command not yet issued */
-   selecting   = 0x0002,   /* target is beeing selected */
+   selecting   = 0x0002,   /* target is being selected */
identified  = 0x0004,   /* IDENTIFY was sent */
disconnected= 0x0008,   /* target disconnected */
-   completed   = 0x0010,   /* target sent COMMAND COMPLETE */ 
+   completed   = 0x0010,   /* target sent COMMAND COMPLETE */
aborted = 0x0020,   /* ABORT was sent */
resetted= 0x0040,   /* BUS DEVICE RESET was sent */
spiordy = 0x0080,   /* waiting for SPIORDY to raise */
@@ -396,7 +362,6 @@ static int exttrans[] = {0, 0};
 module_param_array(exttrans, int, NULL, 0);
 MODULE_PARM_DESC(exttrans,"use extended translation");
 
-#if !defined(AHA152X_DEBUG)
 static int aha152x[] = {0, 11, 7, 1, 1, 0, DELAY_DEFAULT, 0};
 module_param_array(aha152x, int, NULL, 0);
 MODULE_PARM_DESC(aha152x, "parameters for first controller");
@@ -404,19 +369,6 @@ MODULE_PARM_DESC(aha152x, "parameters for first 
controller");
 static int aha152x1[] = {0, 11, 7, 1, 1, 0, DELAY_DEFAULT, 0};
 module_param_array(aha152x1, int, NULL, 0);
 MODULE_PARM_DESC(aha152x1, "parameters for second controller");
-#else
-static int debug[] = {DEBUG_DEFAULT, DEBUG_DEFAULT};
-module_param_array(debug, int, NULL, 0);
-MODULE_PARM_DESC(debug, "flags for driver debugging");
-
-static int aha152x[]   = {0, 11, 7, 1, 1, 1, DELAY_DEFAULT, 0, DEBUG_DEFAULT};
-module_param_array(aha152x, int, NULL, 0);
-MODULE_PARM_DESC(aha152x, "parameters for first controller");
-
-static int aha152x1[]  = {0, 11, 7, 1, 1, 1, DELAY_DEFAULT, 0, DEBUG_DEFAULT};
-module_param_array(aha152x1, int, NULL, 0);
-MODULE_PARM_DESC(aha152x1, "parameters for second controller");
-#endif /* !defined(AHA152X_DEBUG) */
 #endif /* MODULE */
 
 #ifdef __ISAPNP__
@@ -446,7 +398,7 @@ static struct scsi_host_template aha152x_driver_template;
 /*
  * internal states of the host
  *
- */ 
+ */
 enum aha152x_state {
idle=0,
unknown

[PATCH 03/26] aha152x: Debug output update and whitespace cleanup

2014-10-06 Thread Hannes Reinecke
Remove all uncommented debugging code and move all
printk() statements over to dev_printk().
And while we're at it we should be doing a whitespace
cleanup, too.

Reviewed-by: Robert Elliott 
Reviewed-by: Christoph Hellwig 
Signed-off-by: Hannes Reinecke 
---
 drivers/scsi/aha152x.c | 994 +++--
 1 file changed, 224 insertions(+), 770 deletions(-)

diff --git a/drivers/scsi/aha152x.c b/drivers/scsi/aha152x.c
index e77b72f..2b960b3 100644
--- a/drivers/scsi/aha152x.c
+++ b/drivers/scsi/aha152x.c
@@ -230,7 +230,7 @@
  *
  *
  **
- 
+
  see Documentation/scsi/aha152x.txt for configuration details
 
  **/
@@ -279,45 +279,11 @@ static LIST_HEAD(aha152x_host_list);
 #error define AUTOCONF or SETUP0
 #endif
 
-#if defined(AHA152X_DEBUG)
-#define DEBUG_DEFAULT debug_eh
-
-#define DPRINTK(when,msgs...) \
-   do { if(HOSTDATA(shpnt)->debug & (when)) printk(msgs); } while(0)
-
-#define DO_LOCK(flags) \
-   do { \
-   if(spin_is_locked(&QLOCK)) { \
-   DPRINTK(debug_intr, DEBUG_LEAD "(%s:%d) already locked 
at %s:%d\n", CMDINFO(CURRENT_SC), __func__, __LINE__, QLOCKER, QLOCKERL); \
-   } \
-   DPRINTK(debug_locking, DEBUG_LEAD "(%s:%d) locking\n", 
CMDINFO(CURRENT_SC), __func__, __LINE__); \
-   spin_lock_irqsave(&QLOCK,flags); \
-   DPRINTK(debug_locking, DEBUG_LEAD "(%s:%d) locked\n", 
CMDINFO(CURRENT_SC), __func__, __LINE__); \
-   QLOCKER=__func__; \
-   QLOCKERL=__LINE__; \
-   } while(0)
-
-#define DO_UNLOCK(flags)   \
-   do { \
-   DPRINTK(debug_locking, DEBUG_LEAD "(%s:%d) unlocking (locked at 
%s:%d)\n", CMDINFO(CURRENT_SC), __func__, __LINE__, QLOCKER, QLOCKERL); \
-   spin_unlock_irqrestore(&QLOCK,flags); \
-   DPRINTK(debug_locking, DEBUG_LEAD "(%s:%d) unlocked\n", 
CMDINFO(CURRENT_SC), __func__, __LINE__); \
-   QLOCKER="(not locked)"; \
-   QLOCKERL=0; \
-   } while(0)
-
-#else
-#define DPRINTK(when,msgs...)
 #defineDO_LOCK(flags)  spin_lock_irqsave(&QLOCK,flags)
 #defineDO_UNLOCK(flags)spin_unlock_irqrestore(&QLOCK,flags)
-#endif
 
 #define LEAD   "(scsi%d:%d:%d) "
-#define WARN_LEAD  KERN_WARNINGLEAD
 #define INFO_LEAD  KERN_INFO   LEAD
-#define NOTE_LEAD  KERN_NOTICE LEAD
-#define ERR_LEAD   KERN_ERRLEAD
-#define DEBUG_LEAD KERN_DEBUG  LEAD
 #define CMDINFO(cmd) \
(cmd) ? ((cmd)->device->host->host_no) : -1, \
 (cmd) ? ((cmd)->device->id & 0x0f) : -1, \
@@ -345,10 +311,10 @@ CMD_INC_RESID(struct scsi_cmnd *cmd, int inc)
 
 enum {
not_issued  = 0x0001,   /* command not yet issued */
-   selecting   = 0x0002,   /* target is beeing selected */
+   selecting   = 0x0002,   /* target is being selected */
identified  = 0x0004,   /* IDENTIFY was sent */
disconnected= 0x0008,   /* target disconnected */
-   completed   = 0x0010,   /* target sent COMMAND COMPLETE */ 
+   completed   = 0x0010,   /* target sent COMMAND COMPLETE */
aborted = 0x0020,   /* ABORT was sent */
resetted= 0x0040,   /* BUS DEVICE RESET was sent */
spiordy = 0x0080,   /* waiting for SPIORDY to raise */
@@ -396,7 +362,6 @@ static int exttrans[] = {0, 0};
 module_param_array(exttrans, int, NULL, 0);
 MODULE_PARM_DESC(exttrans,"use extended translation");
 
-#if !defined(AHA152X_DEBUG)
 static int aha152x[] = {0, 11, 7, 1, 1, 0, DELAY_DEFAULT, 0};
 module_param_array(aha152x, int, NULL, 0);
 MODULE_PARM_DESC(aha152x, "parameters for first controller");
@@ -404,19 +369,6 @@ MODULE_PARM_DESC(aha152x, "parameters for first 
controller");
 static int aha152x1[] = {0, 11, 7, 1, 1, 0, DELAY_DEFAULT, 0};
 module_param_array(aha152x1, int, NULL, 0);
 MODULE_PARM_DESC(aha152x1, "parameters for second controller");
-#else
-static int debug[] = {DEBUG_DEFAULT, DEBUG_DEFAULT};
-module_param_array(debug, int, NULL, 0);
-MODULE_PARM_DESC(debug, "flags for driver debugging");
-
-static int aha152x[]   = {0, 11, 7, 1, 1, 1, DELAY_DEFAULT, 0, DEBUG_DEFAULT};
-module_param_array(aha152x, int, NULL, 0);
-MODULE_PARM_DESC(aha152x, "parameters for first controller");
-
-static int aha152x1[]  = {0, 11, 7, 1, 1, 1, DELAY_DEFAULT, 0, DEBUG_DEFAULT};
-module_param_array(aha152x1, int, NULL, 0);
-MODULE_PARM_DESC(aha152x1, "parameters for second controller");
-#endif /* !defined(AHA152X_DEBUG) */
 #endif /* MODULE */
 
 #ifdef __ISAPNP__
@@ -446,7 +398,7 @@ static struct scsi_host_template aha152x_driver_template;
 /*
  * internal states of the host
  *
- */ 
+ */
 enum aha152x_state {
idle=0,
unknown