aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci/hotplug/shpchp_sysfs.c
diff options
context:
space:
mode:
authorrajesh.shah@intel.com <rajesh.shah@intel.com>2005-10-13 12:05:37 -0700
committerGreg Kroah-Hartman <gregkh@suse.de>2005-10-28 15:36:59 -0700
commit7e88ed199689f333668b62348051202706b6a74a (patch)
tree5dd9d1f727a1b6b1435e475dcc62e7fde26d99f5 /drivers/pci/hotplug/shpchp_sysfs.c
parentdbd7a78818d125a0ebd5507d4edb4dd5900006ab (diff)
downloadkernel_samsung_smdk4412-7e88ed199689f333668b62348051202706b6a74a.zip
kernel_samsung_smdk4412-7e88ed199689f333668b62348051202706b6a74a.tar.gz
kernel_samsung_smdk4412-7e88ed199689f333668b62348051202706b6a74a.tar.bz2
[PATCH] shpchp: remove redundant display of PCI device resources
Info about resources assigned to PCI devices is already available through sysfs and pci utilities. There's no need for shpchp to create another sysfs file to display the same information. Signed-off-by: Rajesh Shah <rajesh.shah@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/pci/hotplug/shpchp_sysfs.c')
-rw-r--r--drivers/pci/hotplug/shpchp_sysfs.c68
1 files changed, 0 insertions, 68 deletions
diff --git a/drivers/pci/hotplug/shpchp_sysfs.c b/drivers/pci/hotplug/shpchp_sysfs.c
index b0e781d..ce41719 100644
--- a/drivers/pci/hotplug/shpchp_sysfs.c
+++ b/drivers/pci/hotplug/shpchp_sysfs.c
@@ -88,75 +88,7 @@ static ssize_t show_ctrl (struct device *dev, struct device_attribute *attr, cha
}
static DEVICE_ATTR (ctrl, S_IRUGO, show_ctrl, NULL);
-static ssize_t show_dev (struct device *dev, struct device_attribute *attr, char *buf)
-{
- struct pci_dev *pdev, *fdev;
- struct controller *ctrl;
- char * out = buf;
- int index;
- struct resource *res;
- struct pci_func *new_slot;
- struct slot *slot;
-
- pdev = container_of (dev, struct pci_dev, dev);
- ctrl = pci_get_drvdata(pdev);
-
- slot=ctrl->slot;
-
- while (slot) {
- new_slot = shpchp_slot_find(slot->bus, slot->device, 0);
- if (!new_slot)
- break;
- fdev = new_slot->pci_dev;
- if (!fdev)
- break;
- out += sprintf(out, "assigned resources: memory\n");
- for (index=0; index <= PCI_NUM_RESOURCES; index++) {
- res = &(fdev->resource[index]);
- if (res && (res->flags & IORESOURCE_MEM) &&
- !(res->flags & IORESOURCE_PREFETCH)) {
- out += sprintf(out,
- "start = %8.8lx, length = %8.8lx\n",
- res->start, (res->end - res->start));
- }
- }
- out += sprintf(out, "assigned resources: prefetchable memory\n");
- for (index=0; index <= PCI_NUM_RESOURCES; index++) {
- res = &(fdev->resource[index]);
- if (res && (res->flags & (IORESOURCE_MEM |
- IORESOURCE_PREFETCH))) {
- out += sprintf(out,
- "start = %8.8lx, length = %8.8lx\n",
- res->start, (res->end - res->start));
- }
- }
- out += sprintf(out, "assigned resources: IO\n");
- for (index=0; index <= PCI_NUM_RESOURCES; index++) {
- res = &(fdev->resource[index]);
- if (res && (res->flags & IORESOURCE_IO)) {
- out += sprintf(out,
- "start = %8.8lx, length = %8.8lx\n",
- res->start, (res->end - res->start));
- }
- }
- out += sprintf(out, "assigned resources: bus numbers\n");
- if (fdev->subordinate)
- out += sprintf(out, "start = %8.8x, length = %8.8x\n",
- fdev->subordinate->secondary,
- (fdev->subordinate->subordinate -
- fdev->subordinate->secondary));
- else
- out += sprintf(out, "start = %8.8x, length = %8.8x\n",
- fdev->bus->number, 1);
- slot=slot->next;
- }
-
- return out - buf;
-}
-static DEVICE_ATTR (dev, S_IRUGO, show_dev, NULL);
-
void shpchp_create_ctrl_files (struct controller *ctrl)
{
device_create_file (&ctrl->pci_dev->dev, &dev_attr_ctrl);
- device_create_file (&ctrl->pci_dev->dev, &dev_attr_dev);
}