* [PATCH] Fix compile warning in drivers/pnp/resource.c with !CONFIG_PCI
@ 2005-03-21 18:40 Mika Kukkonen
2005-03-22 6:01 ` Andrew Morton
0 siblings, 1 reply; 2+ messages in thread
From: Mika Kukkonen @ 2005-03-21 18:40 UTC (permalink / raw)
To: ambx1, perex; +Cc: akpm, linux-kernel
With !CONFIG_PCI I get following warning:
CC drivers/pnp/resource.o
drivers/pnp/resource.c:24: warning: `pnp_skip_pci_scan' defined but not used
Two ways to fix this, first one would be to simply #ifdef the
variable. But the variable
in question is not (according to cscope) actually used outside this
one other place (and reason why it became a warning now is that Adrian
made it static), and so the code inside CONFIG_PCI is actually relying
on the fact that the variable is implicitly initialized to 0.
So the patch just deletes the variable.
--MiKu
Signed-off-by: Mika Kukkonen (mikukkon@gmail.com)
--- 1.25/drivers/pnp/resource.c 2005-03-14 01:29:58 +02:00
+++ edited/resource.c 2005-03-21 19:41:54 +02:00
@@ -21,7 +21,6 @@
#include <linux/pnp.h>
#include "base.h"
-static int pnp_skip_pci_scan; /* skip PCI
resource scanning */
static int pnp_reserve_irq[16] = { [0 ... 15] = -1 }; /* reserve
(don't use) some IRQ */
static int pnp_reserve_dma[8] = { [0 ... 7] = -1 }; /* reserve
(don't use) some DMA */
static int pnp_reserve_io[16] = { [0 ... 15] = -1 }; /* reserve
(don't use) some I/O region */
@@ -385,7 +384,7 @@
#ifdef CONFIG_PCI
/* check if the resource is being used by a pci device */
- if (!pnp_skip_pci_scan) {
+ {
struct pci_dev * pci = NULL;
while ((pci = pci_find_device(PCI_ANY_ID, PCI_ANY_ID,
pci)) != NULL) {
if (pci->irq == *irq)
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] Fix compile warning in drivers/pnp/resource.c with !CONFIG_PCI
2005-03-21 18:40 [PATCH] Fix compile warning in drivers/pnp/resource.c with !CONFIG_PCI Mika Kukkonen
@ 2005-03-22 6:01 ` Andrew Morton
0 siblings, 0 replies; 2+ messages in thread
From: Andrew Morton @ 2005-03-22 6:01 UTC (permalink / raw)
To: Mika Kukkonen; +Cc: ambx1, perex, linux-kernel
Mika Kukkonen <mikukkon@gmail.com> wrote:
>
>
> With !CONFIG_PCI I get following warning:
>
> CC drivers/pnp/resource.o
> drivers/pnp/resource.c:24: warning: `pnp_skip_pci_scan' defined but not used
>
> Two ways to fix this, first one would be to simply #ifdef the
> variable. But the variable
> in question is not (according to cscope) actually used outside this
> one other place (and reason why it became a warning now is that Adrian
> made it static), and so the code inside CONFIG_PCI is actually relying
> on the fact that the variable is implicitly initialized to 0.
> So the patch just deletes the variable.
Well Adam might actually have meant to set pnp_skip_pci_scan with a __setup
thingy.
Your patch was wildly wordwrapped.
We have a cute macro for that pci_dev walk.
I queued this up:
--- 25/drivers/pnp/resource.c~fix-compile-warning-in-drivers-pnp-resourcec-with-config_pci 2005-03-21 21:57:11.000000000 -0800
+++ 25-akpm/drivers/pnp/resource.c 2005-03-21 21:58:49.000000000 -0800
@@ -21,7 +21,6 @@
#include <linux/pnp.h>
#include "base.h"
-static int pnp_skip_pci_scan; /* skip PCI resource scanning */
static int pnp_reserve_irq[16] = { [0 ... 15] = -1 }; /* reserve (don't use) some IRQ */
static int pnp_reserve_dma[8] = { [0 ... 7] = -1 }; /* reserve (don't use) some DMA */
static int pnp_reserve_io[16] = { [0 ... 15] = -1 }; /* reserve (don't use) some I/O region */
@@ -385,9 +384,9 @@ int pnp_check_irq(struct pnp_dev * dev,
#ifdef CONFIG_PCI
/* check if the resource is being used by a pci device */
- if (!pnp_skip_pci_scan) {
- struct pci_dev * pci = NULL;
- while ((pci = pci_find_device(PCI_ANY_ID, PCI_ANY_ID, pci)) != NULL) {
+ {
+ struct pci_dev *pci = NULL;
+ for_each_pci_dev(pci) {
if (pci->irq == *irq)
return 0;
}
_
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2005-03-22 6:05 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-03-21 18:40 [PATCH] Fix compile warning in drivers/pnp/resource.c with !CONFIG_PCI Mika Kukkonen
2005-03-22 6:01 ` Andrew Morton
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox