[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <7631ef94afd60f1e0ff90ada695db1bcf85bea40.1628957100.git.aakashhemadri123@gmail.com>
Date: Sun, 15 Aug 2021 01:42:04 +0530
From: Aakash Hemadri <aakashhemadri123@...il.com>
To: Bjorn Helgaas <bhelgaas@...gle.com>
Cc: Shuah Khan <skhan@...ndation.org>, linux-pci@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: [PATCH 1/4] PCI: Missing blank line after declarations
Fix checkpatch.pl WARNING: Missing a blank line after declarations
Signed-off-by: Aakash Hemadri <aakashhemadri123@...il.com>
---
drivers/pci/slot.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/pci/slot.c b/drivers/pci/slot.c
index 751a26668e3a..6ee4ccaf30b3 100644
--- a/drivers/pci/slot.c
+++ b/drivers/pci/slot.c
@@ -20,6 +20,7 @@ static ssize_t pci_slot_attr_show(struct kobject *kobj,
{
struct pci_slot *slot = to_pci_slot(kobj);
struct pci_slot_attribute *attribute = to_pci_slot_attr(attr);
+
return attribute->show ? attribute->show(slot, buf) : -EIO;
}
@@ -28,6 +29,7 @@ static ssize_t pci_slot_attr_store(struct kobject *kobj,
{
struct pci_slot *slot = to_pci_slot(kobj);
struct pci_slot_attribute *attribute = to_pci_slot_attr(attr);
+
return attribute->store ? attribute->store(slot, buf, len) : -EIO;
}
@@ -123,6 +125,7 @@ static char *make_slot_name(const char *name)
for (;;) {
struct kobject *dup_slot;
+
dup_slot = kset_find_obj(pci_slots_kset, new_name);
if (!dup_slot)
break;
--
2.32.0
Powered by blists - more mailing lists