diff options
author | Adrian Bunk <bunk@kernel.org> | 2008-07-26 04:46:21 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-26 21:00:11 +0200 |
commit | 25cdcd0086d97a011fcd0c1ff572e30da24790ec (patch) | |
tree | b3c6ab7ff2813ec3253af8d993f40264f941a8f4 /drivers/pnp/card.c | |
parent | make cgroup_seqfile_release() static (diff) | |
download | linux-25cdcd0086d97a011fcd0c1ff572e30da24790ec.tar.xz linux-25cdcd0086d97a011fcd0c1ff572e30da24790ec.zip |
make pnp_add_card_id() static
pnp_add_card_id() can now become static.
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Cc: Bjorn Helgaas <bjorn.helgaas@hp.com>
Cc: Rene Herman <rene.herman@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/pnp/card.c')
-rw-r--r-- | drivers/pnp/card.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pnp/card.c b/drivers/pnp/card.c index b00ef1030e45..e75b060daa95 100644 --- a/drivers/pnp/card.c +++ b/drivers/pnp/card.c @@ -102,7 +102,7 @@ static int card_probe(struct pnp_card *card, struct pnp_card_driver *drv) * @id: pointer to a pnp_id structure * @card: pointer to the desired card */ -struct pnp_id *pnp_add_card_id(struct pnp_card *card, char *id) +static struct pnp_id *pnp_add_card_id(struct pnp_card *card, char *id) { struct pnp_id *dev_id, *ptr; |