Skip to content
Snippets Groups Projects
Commit 0248499b authored by Felix Fietkau's avatar Felix Fietkau
Browse files

fix missing sbh symbol on 2.4

SVN-Revision: 2784
parent 5dff113a
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,13 @@
#if defined(BCMGPIO2)
#ifdef LINUX_2_4
#define sbh bcm947xx_sbh
extern void *bcm947xx_sbh;
#else
extern void *sbh;
#endif
extern __u32 sb_gpioin(void *sbh);
extern __u32 sb_gpiointpolarity(void *sbh, __u32 mask, __u32 val, __u8 prio);
extern __u32 sb_gpiointmask(void *sbh, __u32 mask, __u32 val, __u8 prio);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment