Fix non-ISA link error in drivers/scsi/advansys.c
When CONFIG_ISA is disabled, the isa_driver support will not be compiled in. Define stubs so that we don't get link-time errors. Signed-off-by: Matthew Wilcox <matthew@wil.cx> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
5e41d0d60a
commit
fa890d586c
@ -22,7 +22,18 @@ struct isa_driver {
|
|||||||
|
|
||||||
#define to_isa_driver(x) container_of((x), struct isa_driver, driver)
|
#define to_isa_driver(x) container_of((x), struct isa_driver, driver)
|
||||||
|
|
||||||
|
#ifdef CONFIG_ISA
|
||||||
int isa_register_driver(struct isa_driver *, unsigned int);
|
int isa_register_driver(struct isa_driver *, unsigned int);
|
||||||
void isa_unregister_driver(struct isa_driver *);
|
void isa_unregister_driver(struct isa_driver *);
|
||||||
|
#else
|
||||||
|
static inline int isa_register_driver(struct isa_driver *d, unsigned int i)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void isa_unregister_driver(struct isa_driver *d)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif /* __LINUX_ISA_H */
|
#endif /* __LINUX_ISA_H */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user