[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1339250619-1561-2-git-send-email-johunt@akamai.com>
Date: Sat, 9 Jun 2012 07:03:39 -0700
From: Josh Hunt <johunt@...mai.com>
To: "James E.J. Bottomley" <JBottomley@...allels.com>,
linux-scsi@...r.kernel.org
Cc: linux-kernel@...r.kernel.org, Josh Hunt <johunt@...mai.com>
Subject: [PATCH 2/2] scsi: properly initialize atomic_t scsi_host_next_hn
Initialize atomic_t scsi_host_next_hn as per the guidelines defined in Documentation/atomic_ops.txt
Signed-off-by: Josh Hunt <johunt@...mai.com>
---
drivers/scsi/hosts.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/scsi/hosts.c b/drivers/scsi/hosts.c
index a3a056a..2b6a03d 100644
--- a/drivers/scsi/hosts.c
+++ b/drivers/scsi/hosts.c
@@ -42,7 +42,7 @@
#include "scsi_logging.h"
-static atomic_t scsi_host_next_hn; /* host_no for next new host */
+static atomic_t scsi_host_next_hn = ATOMIC_INIT(0); /* host_no for next new host */
static void scsi_host_cls_release(struct device *dev)
--
1.7.0.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists