From: Bjorn Helgaas Date: Thu, 22 Sep 2005 07:48:02 +0000 (-0700) Subject: [PATCH] PCI: remove unused "scratch" X-Git-Tag: v2.6.14-rc3~51^2~85 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=1029d6b58adc3225911c56af26895871dd2ea8cf;p=~emulex%2Finfiniband.git [PATCH] PCI: remove unused "scratch" Unused variable. Signed-off-by: Bjorn Helgaas Signed-off-by: Greg Kroah-Hartman Signed-off-by: Linus Torvalds --- diff --git a/drivers/pci/hotplug.c b/drivers/pci/hotplug.c index 10444988a10..e1743be3190 100644 --- a/drivers/pci/hotplug.c +++ b/drivers/pci/hotplug.c @@ -7,7 +7,6 @@ int pci_hotplug (struct device *dev, char **envp, int num_envp, char *buffer, int buffer_size) { struct pci_dev *pdev; - char *scratch; int i = 0; int length = 0; @@ -18,9 +17,6 @@ int pci_hotplug (struct device *dev, char **envp, int num_envp, if (!pdev) return -ENODEV; - scratch = buffer; - - if (add_hotplug_env_var(envp, num_envp, &i, buffer, buffer_size, &length, "PCI_CLASS=%04X", pdev->class))