提交 36b85189 编写于 作者: B Bhumika Goyal 提交者: Bjorn Helgaas

PCI: Constify endpoint pci_epf_type device_type

Make this const as it is only stored in the type field of a device
structure, which is const.  Done using Coccinelle.
Signed-off-by: NBhumika Goyal <bhumirks@gmail.com>
Signed-off-by: NBjorn Helgaas <bhelgaas@google.com>
上级 8bdc50ac
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
#include <linux/pci-ep-cfs.h> #include <linux/pci-ep-cfs.h>
static struct bus_type pci_epf_bus_type; static struct bus_type pci_epf_bus_type;
static struct device_type pci_epf_type; static const struct device_type pci_epf_type;
/** /**
* pci_epf_linkup() - Notify the function driver that EPC device has * pci_epf_linkup() - Notify the function driver that EPC device has
...@@ -275,7 +275,7 @@ static void pci_epf_dev_release(struct device *dev) ...@@ -275,7 +275,7 @@ static void pci_epf_dev_release(struct device *dev)
kfree(epf); kfree(epf);
} }
static struct device_type pci_epf_type = { static const struct device_type pci_epf_type = {
.release = pci_epf_dev_release, .release = pci_epf_dev_release,
}; };
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册