Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1161800AbbBDSsj (ORCPT ); Wed, 4 Feb 2015 13:48:39 -0500 Received: from mail-we0-f181.google.com ([74.125.82.181]:33035 "EHLO mail-we0-f181.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1161229AbbBDSsh (ORCPT ); Wed, 4 Feb 2015 13:48:37 -0500 From: Lad Prabhakar To: Willem Riede , "James E.J. Bottomley" Cc: osst-users@lists.sourceforge.net, linux-scsi@vger.kernel.org, linux-kernel@vger.kernel.org, "Lad, Prabhakar" Subject: [PATCH] scsi: osst: fix sparse warnings Date: Wed, 4 Feb 2015 18:48:05 +0000 Message-Id: <1423075685-7397-1-git-send-email-prabhakar.csengg@gmail.com> X-Mailer: git-send-email 1.9.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3285 Lines: 85 From: "Lad, Prabhakar" this patch fixes following sparse warnings: osst.c:5699:1: warning: symbol 'dev_attr_ADR_rev' was not declared. Should it be static? osst.c:5713:1: warning: symbol 'dev_attr_media_version' was not declared. Should it be static? osst.c:5726:1: warning: symbol 'dev_attr_capacity' was not declared. Should it be static? osst.c:5740:1: warning: symbol 'dev_attr_BOT_frame' was not declared. Should it be static? osst.c:5754:1: warning: symbol 'dev_attr_EOD_frame' was not declared. Should it be static? osst.c:5767:1: warning: symbol 'dev_attr_file_count' was not declared. Should it be static? Signed-off-by: Lad, Prabhakar --- Found this issue on linux-next (gcc version 4.8.2, sparse version 0.4.5-rc1)and applies on top linux-next. drivers/scsi/osst.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/scsi/osst.c b/drivers/scsi/osst.c index 5033223..4c100bf 100644 --- a/drivers/scsi/osst.c +++ b/drivers/scsi/osst.c @@ -5696,7 +5696,7 @@ static ssize_t osst_adr_rev_show(struct device *dev, return l; } -DEVICE_ATTR(ADR_rev, S_IRUGO, osst_adr_rev_show, NULL); +static DEVICE_ATTR(ADR_rev, S_IRUGO, osst_adr_rev_show, NULL); static ssize_t osst_linux_media_version_show(struct device *dev, struct device_attribute *attr, @@ -5710,7 +5710,7 @@ static ssize_t osst_linux_media_version_show(struct device *dev, return l; } -DEVICE_ATTR(media_version, S_IRUGO, osst_linux_media_version_show, NULL); +static DEVICE_ATTR(media_version, S_IRUGO, osst_linux_media_version_show, NULL); static ssize_t osst_capacity_show(struct device *dev, struct device_attribute *attr, char *buf) @@ -5723,7 +5723,7 @@ static ssize_t osst_capacity_show(struct device *dev, return l; } -DEVICE_ATTR(capacity, S_IRUGO, osst_capacity_show, NULL); +static DEVICE_ATTR(capacity, S_IRUGO, osst_capacity_show, NULL); static ssize_t osst_first_data_ppos_show(struct device *dev, struct device_attribute *attr, @@ -5737,7 +5737,7 @@ static ssize_t osst_first_data_ppos_show(struct device *dev, return l; } -DEVICE_ATTR(BOT_frame, S_IRUGO, osst_first_data_ppos_show, NULL); +static DEVICE_ATTR(BOT_frame, S_IRUGO, osst_first_data_ppos_show, NULL); static ssize_t osst_eod_frame_ppos_show(struct device *dev, struct device_attribute *attr, @@ -5751,7 +5751,7 @@ static ssize_t osst_eod_frame_ppos_show(struct device *dev, return l; } -DEVICE_ATTR(EOD_frame, S_IRUGO, osst_eod_frame_ppos_show, NULL); +static DEVICE_ATTR(EOD_frame, S_IRUGO, osst_eod_frame_ppos_show, NULL); static ssize_t osst_filemark_cnt_show(struct device *dev, struct device_attribute *attr, char *buf) @@ -5764,7 +5764,7 @@ static ssize_t osst_filemark_cnt_show(struct device *dev, return l; } -DEVICE_ATTR(file_count, S_IRUGO, osst_filemark_cnt_show, NULL); +static DEVICE_ATTR(file_count, S_IRUGO, osst_filemark_cnt_show, NULL); static struct class *osst_sysfs_class; -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/