diff options
author | Denis Cheng <crquan@gmail.com> | 2007-12-14 01:14:27 +0100 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2008-01-12 01:28:15 +0100 |
commit | b7d68ca3f055b90bb782bcfcf535f54cead7d7db (patch) | |
tree | 160c927a24171e9648ba289c13f5bc81dc478432 /drivers/scsi/ipr.c | |
parent | [SCSI] gdth: kill unneeded 'irq' argument (diff) | |
download | linux-b7d68ca3f055b90bb782bcfcf535f54cead7d7db.tar.xz linux-b7d68ca3f055b90bb782bcfcf535f54cead7d7db.zip |
[SCSI] ipr: use LIST_HEAD instead of LIST_HEAD_INIT
Signed-off-by: Denis Cheng <crquan@gmail.com>
Acked-by: Brian King <brking@linux.vnet.ibm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to '')
-rw-r--r-- | drivers/scsi/ipr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/ipr.c b/drivers/scsi/ipr.c index 0841df01bc19..9018ee851a8a 100644 --- a/drivers/scsi/ipr.c +++ b/drivers/scsi/ipr.c @@ -84,7 +84,7 @@ /* * Global Data */ -static struct list_head ipr_ioa_head = LIST_HEAD_INIT(ipr_ioa_head); +static LIST_HEAD(ipr_ioa_head); static unsigned int ipr_log_level = IPR_DEFAULT_LOG_LEVEL; static unsigned int ipr_max_speed = 1; static int ipr_testmode = 0; |