summaryrefslogtreecommitdiffstats
path: root/sys/dev/pccard/pccardvar.h
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2000-09-16 06:52:20 +0000
committerimp <imp@FreeBSD.org>2000-09-16 06:52:20 +0000
commit3599553fbcfbefde77cf622d92b72f19920e0256 (patch)
tree5bb347126ae26f0d847b05f98cfdfc753f3b499e /sys/dev/pccard/pccardvar.h
parentb24c98c76631a06cd67758941dcd0d9002b176f4 (diff)
downloadFreeBSD-src-3599553fbcfbefde77cf622d92b72f19920e0256.zip
FreeBSD-src-3599553fbcfbefde77cf622d92b72f19920e0256.tar.gz
Change the interface to pccard_function_init. The interface is such
that it looks for an acceptible one. Once it finds it, it should set the resources for the device. I say "should" because I've not written that. Also set an ivar for the child of pccard. Minor fix to the attach message printed, we lose the slot number, which I'll have to restore later. Adjust the pccard ivar so that we can save the function that corresponds to this driver so we can enable and disable it more easily. Save a pointer to the function so we know what we're dealing with. There should be some way for the driver to specify which cfg it wants to activate. For now the pccard_function_init function just picks one, but we'll have to revisit this going forward. I'm not doing it now because I'd need some way to activate the card many times and I'm not sure that is desirable or even safe with some cards.
Diffstat (limited to 'sys/dev/pccard/pccardvar.h')
-rw-r--r--sys/dev/pccard/pccardvar.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/dev/pccard/pccardvar.h b/sys/dev/pccard/pccardvar.h
index a730459..19a25a3 100644
--- a/sys/dev/pccard/pccardvar.h
+++ b/sys/dev/pccard/pccardvar.h
@@ -168,7 +168,7 @@ struct pccard_card {
/* More later? */
struct pccard_ivar {
struct resource_list resources;
- int slotnum;
+ struct pccard_function *fcn;
};
struct pccard_softc {
@@ -244,8 +244,7 @@ void pccard_ccr_write(struct pccard_function *, int, int);
/* The following is the vestages of the NetBSD driver api */
-void pccard_function_init(struct pccard_function *,
- struct pccard_config_entry *);
+void pccard_function_init(struct pccard_function *);
int pccard_function_enable(struct pccard_function *);
void pccard_function_disable(struct pccard_function *);
OpenPOWER on IntegriCloud