Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 87288
b: refs/heads/master
c: 09be755
h: refs/heads/master
v: v3
  • Loading branch information
Tony Lindgren committed Mar 5, 2008
1 parent 8cb100a commit 3a315ed
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: 0cc0a441163b92fbda5fe1886cb6e9876cf08f40
refs/heads/master: 09be7553959c9947f7cbccbe1c3094bb2e3ffd28
11 changes: 11 additions & 0 deletions trunk/include/asm-arm/arch-omap/gpioexpander.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,18 @@

/* Function Prototypes for GPIO Expander functions */

#ifdef CONFIG_GPIOEXPANDER_OMAP
int read_gpio_expa(u8 *, int);
int write_gpio_expa(u8 , int);
#else
static inline int read_gpio_expa(u8 *val, int addr)
{
return 0;
}
static inline int write_gpio_expa(u8 val, int addr)
{
return 0;
}
#endif

#endif /* __ASM_ARCH_OMAP_GPIOEXPANDER_H */

0 comments on commit 3a315ed

Please sign in to comment.