forked from Minki/linux
772defc629
This moves some of the pnp_id knowledge out of the backends and into 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>
14 lines
553 B
C
14 lines
553 B
C
extern spinlock_t pnp_lock;
|
|
void *pnp_alloc(long size);
|
|
struct pnp_id *pnp_add_id(struct pnp_dev *dev, char *id);
|
|
int pnp_interface_attach_device(struct pnp_dev *dev);
|
|
void pnp_fixup_device(struct pnp_dev *dev);
|
|
void pnp_free_option(struct pnp_option *option);
|
|
int __pnp_add_device(struct pnp_dev *dev);
|
|
void __pnp_remove_device(struct pnp_dev *dev);
|
|
|
|
int pnp_check_port(struct pnp_dev * dev, int idx);
|
|
int pnp_check_mem(struct pnp_dev * dev, int idx);
|
|
int pnp_check_irq(struct pnp_dev * dev, int idx);
|
|
int pnp_check_dma(struct pnp_dev * dev, int idx);
|