diff options
author | Bjorn Helgaas <bjorn.helgaas@hp.com> | 2008-04-28 18:34:09 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2008-04-29 03:22:22 -0400 |
commit | f44900020926b2cb06b87f0f52643d6285514fc3 (patch) | |
tree | 081893ba769b0f89e03832995839cfea30fcf5f9 /drivers/pnp/isapnp | |
parent | 81b5c75f0ed22a93c3da00650d0898eec56e1d62 (diff) |
PNP: add pnp_init_resources(struct pnp_dev *) interface
Add pnp_init_resources(struct pnp_dev *) to replace
pnp_init_resource_table(), which takes a pointer to the
pnp_resource_table itself. Passing only the pnp_dev * reduces
the possibility for error in the caller and removes the
pnp_resource_table implementation detail from the interface.
Even though pnp_init_resource_table() is exported, I did not
export pnp_init_resources() because it is used only by the PNP
core.
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/isapnp')
-rw-r--r-- | drivers/pnp/isapnp/core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pnp/isapnp/core.c b/drivers/pnp/isapnp/core.c index 6740016437d9..6f1007548c93 100644 --- a/drivers/pnp/isapnp/core.c +++ b/drivers/pnp/isapnp/core.c | |||
@@ -424,7 +424,7 @@ static struct pnp_dev *__init isapnp_parse_device(struct pnp_card *card, | |||
424 | dev->capabilities |= PNP_READ; | 424 | dev->capabilities |= PNP_READ; |
425 | dev->capabilities |= PNP_WRITE; | 425 | dev->capabilities |= PNP_WRITE; |
426 | dev->capabilities |= PNP_DISABLE; | 426 | dev->capabilities |= PNP_DISABLE; |
427 | pnp_init_resource_table(&dev->res); | 427 | pnp_init_resources(dev); |
428 | return dev; | 428 | return dev; |
429 | } | 429 | } |
430 | 430 | ||
@@ -981,7 +981,7 @@ static int isapnp_get_resources(struct pnp_dev *dev) | |||
981 | int ret; | 981 | int ret; |
982 | 982 | ||
983 | dev_dbg(&dev->dev, "get resources\n"); | 983 | dev_dbg(&dev->dev, "get resources\n"); |
984 | pnp_init_resource_table(&dev->res); | 984 | pnp_init_resources(dev); |
985 | isapnp_cfg_begin(dev->card->number, dev->number); | 985 | isapnp_cfg_begin(dev->card->number, dev->number); |
986 | ret = isapnp_read_resources(dev); | 986 | ret = isapnp_read_resources(dev); |
987 | isapnp_cfg_end(); | 987 | isapnp_cfg_end(); |