mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-17 09:43:59 +08:00
048825deea
pnp_add_card_id() doesn't need to be exposed outside the PNP core, so move the declaration to an internal header file. 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>
18 lines
774 B
C
18 lines
774 B
C
extern spinlock_t pnp_lock;
|
|
void *pnp_alloc(long size);
|
|
#define PNP_EISA_ID_MASK 0x7fffffff
|
|
void pnp_eisa_id_to_string(u32 id, char *str);
|
|
struct pnp_dev *pnp_alloc_dev(struct pnp_protocol *, int id, char *pnpid);
|
|
struct pnp_id *pnp_add_id(struct pnp_dev *dev, char *id);
|
|
int pnp_add_card_id(struct pnp_id *id, struct pnp_card *card);
|
|
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);
|