diff options
author | Bjorn Helgaas <bjorn.helgaas@hp.com> | 2008-04-28 18:34:40 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2008-04-29 03:22:30 -0400 |
commit | 62cfb298b95d713825deb8faf2044c45a1e17a0a (patch) | |
tree | b95c11c8334b5779db67393b3458b54d6dd9a787 /include | |
parent | d152cf5d0c3325979e71ee53b425fdd51a1a285a (diff) |
PNP: make interfaces private to the PNP core
The interfaces for registering protocols, devices, cards,
and resource options should only be used inside 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>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/pnp.h | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/include/linux/pnp.h b/include/linux/pnp.h index a5487b6a4e57..f5b985e912ae 100644 --- a/include/linux/pnp.h +++ b/include/linux/pnp.h | |||
@@ -414,19 +414,12 @@ extern struct bus_type pnp_bus_type; | |||
414 | #if defined(CONFIG_PNP) | 414 | #if defined(CONFIG_PNP) |
415 | 415 | ||
416 | /* device management */ | 416 | /* device management */ |
417 | int pnp_register_protocol(struct pnp_protocol *protocol); | ||
418 | void pnp_unregister_protocol(struct pnp_protocol *protocol); | ||
419 | int pnp_add_device(struct pnp_dev *dev); | ||
420 | int pnp_device_attach(struct pnp_dev *pnp_dev); | 417 | int pnp_device_attach(struct pnp_dev *pnp_dev); |
421 | void pnp_device_detach(struct pnp_dev *pnp_dev); | 418 | void pnp_device_detach(struct pnp_dev *pnp_dev); |
422 | extern struct list_head pnp_global; | 419 | extern struct list_head pnp_global; |
423 | extern int pnp_platform_devices; | 420 | extern int pnp_platform_devices; |
424 | 421 | ||
425 | /* multidevice card support */ | 422 | /* multidevice card support */ |
426 | int pnp_add_card(struct pnp_card *card); | ||
427 | void pnp_remove_card(struct pnp_card *card); | ||
428 | int pnp_add_card_device(struct pnp_card *card, struct pnp_dev *dev); | ||
429 | void pnp_remove_card_device(struct pnp_dev *dev); | ||
430 | struct pnp_dev *pnp_request_card_device(struct pnp_card_link *clink, | 423 | struct pnp_dev *pnp_request_card_device(struct pnp_card_link *clink, |
431 | const char *id, struct pnp_dev *from); | 424 | const char *id, struct pnp_dev *from); |
432 | void pnp_release_card_device(struct pnp_dev *dev); | 425 | void pnp_release_card_device(struct pnp_dev *dev); |
@@ -435,20 +428,7 @@ void pnp_unregister_card_driver(struct pnp_card_driver *drv); | |||
435 | extern struct list_head pnp_cards; | 428 | extern struct list_head pnp_cards; |
436 | 429 | ||
437 | /* resource management */ | 430 | /* resource management */ |
438 | struct pnp_option *pnp_register_independent_option(struct pnp_dev *dev); | ||
439 | struct pnp_option *pnp_register_dependent_option(struct pnp_dev *dev, | ||
440 | int priority); | ||
441 | int pnp_register_irq_resource(struct pnp_dev *dev, struct pnp_option *option, | ||
442 | struct pnp_irq *data); | ||
443 | int pnp_register_dma_resource(struct pnp_dev *dev, struct pnp_option *option, | ||
444 | struct pnp_dma *data); | ||
445 | int pnp_register_port_resource(struct pnp_dev *dev, struct pnp_option *option, | ||
446 | struct pnp_port *data); | ||
447 | int pnp_register_mem_resource(struct pnp_dev *dev, struct pnp_option *option, | ||
448 | struct pnp_mem *data); | ||
449 | void pnp_init_resources(struct pnp_dev *dev); | ||
450 | int pnp_auto_config_dev(struct pnp_dev *dev); | 431 | int pnp_auto_config_dev(struct pnp_dev *dev); |
451 | int pnp_validate_config(struct pnp_dev *dev); | ||
452 | int pnp_start_dev(struct pnp_dev *dev); | 432 | int pnp_start_dev(struct pnp_dev *dev); |
453 | int pnp_stop_dev(struct pnp_dev *dev); | 433 | int pnp_stop_dev(struct pnp_dev *dev); |
454 | int pnp_activate_dev(struct pnp_dev *dev); | 434 | int pnp_activate_dev(struct pnp_dev *dev); |
@@ -463,35 +443,19 @@ void pnp_unregister_driver(struct pnp_driver *drv); | |||
463 | #else | 443 | #else |
464 | 444 | ||
465 | /* device management */ | 445 | /* device management */ |
466 | static inline int pnp_register_protocol(struct pnp_protocol *protocol) { return -ENODEV; } | ||
467 | static inline void pnp_unregister_protocol(struct pnp_protocol *protocol) { } | ||
468 | static inline int pnp_init_device(struct pnp_dev *dev) { return -ENODEV; } | ||
469 | static inline int pnp_add_device(struct pnp_dev *dev) { return -ENODEV; } | ||
470 | static inline int pnp_device_attach(struct pnp_dev *pnp_dev) { return -ENODEV; } | 446 | static inline int pnp_device_attach(struct pnp_dev *pnp_dev) { return -ENODEV; } |
471 | static inline void pnp_device_detach(struct pnp_dev *pnp_dev) { } | 447 | static inline void pnp_device_detach(struct pnp_dev *pnp_dev) { } |
472 | 448 | ||
473 | #define pnp_platform_devices 0 | 449 | #define pnp_platform_devices 0 |
474 | 450 | ||
475 | /* multidevice card support */ | 451 | /* multidevice card support */ |
476 | static inline int pnp_add_card(struct pnp_card *card) { return -ENODEV; } | ||
477 | static inline void pnp_remove_card(struct pnp_card *card) { } | ||
478 | static inline int pnp_add_card_device(struct pnp_card *card, struct pnp_dev *dev) { return -ENODEV; } | ||
479 | static inline void pnp_remove_card_device(struct pnp_dev *dev) { } | ||
480 | static inline struct pnp_dev *pnp_request_card_device(struct pnp_card_link *clink, const char *id, struct pnp_dev *from) { return NULL; } | 452 | static inline struct pnp_dev *pnp_request_card_device(struct pnp_card_link *clink, const char *id, struct pnp_dev *from) { return NULL; } |
481 | static inline void pnp_release_card_device(struct pnp_dev *dev) { } | 453 | static inline void pnp_release_card_device(struct pnp_dev *dev) { } |
482 | static inline int pnp_register_card_driver(struct pnp_card_driver *drv) { return -ENODEV; } | 454 | static inline int pnp_register_card_driver(struct pnp_card_driver *drv) { return -ENODEV; } |
483 | static inline void pnp_unregister_card_driver(struct pnp_card_driver *drv) { } | 455 | static inline void pnp_unregister_card_driver(struct pnp_card_driver *drv) { } |
484 | 456 | ||
485 | /* resource management */ | 457 | /* resource management */ |
486 | static inline struct pnp_option *pnp_register_independent_option(struct pnp_dev *dev) { return NULL; } | ||
487 | static inline struct pnp_option *pnp_register_dependent_option(struct pnp_dev *dev, int priority) { return NULL; } | ||
488 | static inline int pnp_register_irq_resource(struct pnp_dev *dev, struct pnp_option *option, struct pnp_irq *data) { return -ENODEV; } | ||
489 | static inline int pnp_register_dma_resource(struct pnp_dev *dev, struct pnp_option *option, struct pnp_dma *data) { return -ENODEV; } | ||
490 | static inline int pnp_register_port_resource(struct pnp_dev *dev, struct pnp_option *option, struct pnp_port *data) { return -ENODEV; } | ||
491 | static inline int pnp_register_mem_resource(struct pnp_dev *dev, struct pnp_option *option, struct pnp_mem *data) { return -ENODEV; } | ||
492 | static inline void pnp_init_resources(struct pnp_dev *dev) { } | ||
493 | static inline int pnp_auto_config_dev(struct pnp_dev *dev) { return -ENODEV; } | 458 | static inline int pnp_auto_config_dev(struct pnp_dev *dev) { return -ENODEV; } |
494 | static inline int pnp_validate_config(struct pnp_dev *dev) { return -ENODEV; } | ||
495 | static inline int pnp_start_dev(struct pnp_dev *dev) { return -ENODEV; } | 459 | static inline int pnp_start_dev(struct pnp_dev *dev) { return -ENODEV; } |
496 | static inline int pnp_stop_dev(struct pnp_dev *dev) { return -ENODEV; } | 460 | static inline int pnp_stop_dev(struct pnp_dev *dev) { return -ENODEV; } |
497 | static inline int pnp_activate_dev(struct pnp_dev *dev) { return -ENODEV; } | 461 | static inline int pnp_activate_dev(struct pnp_dev *dev) { return -ENODEV; } |