aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorJonathan Chen <jon@FreeBSD.org>2001-08-27 11:28:00 +0000
committerJonathan Chen <jon@FreeBSD.org>2001-08-27 11:28:00 +0000
commit71e79020262cb14fc2741dd256dfc884093a3785 (patch)
tree38f0976abddb60e2d0d886224c2c1d7571bcf4b7 /sys
parent472ce770c4b7c4a4fc09af03cbffcadf24b68d9e (diff)
downloadsrc-71e79020262cb14fc2741dd256dfc884093a3785.tar.gz
src-71e79020262cb14fc2741dd256dfc884093a3785.zip
Make pccard_product_lookup non-static again...
When something is exported, do not mark it as static for no apparent reason... Broken by: me
Notes
Notes: svn path=/head/; revision=82415
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/pccard/pccard.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/dev/pccard/pccard.c b/sys/dev/pccard/pccard.c
index 5853e9a5b630..2e1121715b31 100644
--- a/sys/dev/pccard/pccard.c
+++ b/sys/dev/pccard/pccard.c
@@ -74,9 +74,6 @@ static int pccard_ccr_read(struct pccard_function *pf, int ccr);
static void pccard_ccr_write(struct pccard_function *pf, int ccr, int val);
static int pccard_attach_card(device_t dev);
static int pccard_detach_card(device_t dev, int flags);
-static const struct pccard_product *pccard_product_lookup(device_t dev,
- const struct pccard_product *tab, size_t ent_size,
- pccard_product_match_fn matchfn);
static int pccard_card_gettype(device_t dev, int *type);
static void pccard_function_init(struct pccard_function *pf);
static void pccard_function_free(struct pccard_function *pf);
@@ -267,7 +264,7 @@ pccard_detach_card(device_t dev, int flags)
return (0);
}
-static const struct pccard_product *
+const struct pccard_product *
pccard_product_lookup(device_t dev, const struct pccard_product *tab,
size_t ent_size, pccard_product_match_fn matchfn)
{