diff options
author | Bjorn Helgaas <bjorn.helgaas@hp.com> | 2008-04-28 18:34:41 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2008-04-29 03:22:30 -0400 |
commit | 261b20da4bd349f1b26e206f440809f1351be34b (patch) | |
tree | 0555fa42e62e87a4ab953f54a858003160415bd0 /drivers/pnp | |
parent | 62cfb298b95d713825deb8faf2044c45a1e17a0a (diff) |
ISAPNP: remove unused pnp_dev->regs field
The "regs" field in struct pnp_dev is set but never read, so remove it.
Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com>
Acked-By: Rene Herman <rene.herman@gmail.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/pnp')
-rw-r--r-- | drivers/pnp/isapnp/core.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/pnp/isapnp/core.c b/drivers/pnp/isapnp/core.c index a3f1566ccea5..f1bccdbdeb08 100644 --- a/drivers/pnp/isapnp/core.c +++ b/drivers/pnp/isapnp/core.c | |||
@@ -416,10 +416,7 @@ static struct pnp_dev *__init isapnp_parse_device(struct pnp_card *card, | |||
416 | if (!dev) | 416 | if (!dev) |
417 | return NULL; | 417 | return NULL; |
418 | 418 | ||
419 | dev->regs = tmp[4]; | ||
420 | dev->card = card; | 419 | dev->card = card; |
421 | if (size > 5) | ||
422 | dev->regs |= tmp[5] << 8; | ||
423 | dev->capabilities |= PNP_CONFIGURABLE; | 420 | dev->capabilities |= PNP_CONFIGURABLE; |
424 | dev->capabilities |= PNP_READ; | 421 | dev->capabilities |= PNP_READ; |
425 | dev->capabilities |= PNP_WRITE; | 422 | dev->capabilities |= PNP_WRITE; |