aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRandy Dunlap <rddunlap@osdl.org>2005-03-28 22:55:43 -0600
committerJames Bottomley <jejb@titanic.il.steeleye.com>2005-03-28 22:55:43 -0600
commita51c32f119a2397517cb21d7fe561677fac6d288 (patch)
treeff7ef83fd4c552a479190cf59af5e54b56dc131e
parent73e2ef10a4d452501d286d5ddad1f0539f39e145 (diff)
downloadhistory-a51c32f119a2397517cb21d7fe561677fac6d288.tar.gz
[PATCH] scsi_sysfs: use NULL instead of 0
drivers/scsi/scsi_sysfs.c:814:66: warning: Using plain integer as NULL pointer Signed-off-by: Randy Dunlap <rddunlap@osdl.org> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
-rw-r--r--drivers/scsi/scsi_sysfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/scsi_sysfs.c b/drivers/scsi/scsi_sysfs.c
index bc16d5072bc6b..134d3a3e4222a 100644
--- a/drivers/scsi/scsi_sysfs.c
+++ b/drivers/scsi/scsi_sysfs.c
@@ -813,4 +813,4 @@ EXPORT_SYMBOL(scsi_is_sdev_device);
/* A blank transport template that is used in drivers that don't
* yet implement Transport Attributes */
-struct scsi_transport_template blank_transport_template = { { { {0, }, }, }, };
+struct scsi_transport_template blank_transport_template = { { { {NULL, }, }, }, };