Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 64985
b: refs/heads/master
c: fa890d5
h: refs/heads/master
i:
  64983: c342b4e
v: v3
  • Loading branch information
Matthew Wilcox authored and Linus Torvalds committed Sep 17, 2007
1 parent 9db9152 commit 2b3544b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 5e41d0d60a534d2a5dc9772600a58f44c8d12506
refs/heads/master: fa890d586cc127ce72597ba0a909bfecf784e10c
11 changes: 11 additions & 0 deletions trunk/include/linux/isa.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,18 @@ struct isa_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);
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 */

0 comments on commit 2b3544b

Please sign in to comment.