forked from len0rd/rockbox
Work-in-progress iriver iFP-7xx port by Tomasz Malesinski
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8342 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
8d13068421
commit
d83e929f3f
52 changed files with 737 additions and 18 deletions
|
@ -242,6 +242,8 @@ static void __backlight_on(void)
|
|||
|
||||
/* set port L07 on */
|
||||
outl(((0x100 | 1) << 7), 0x6000d12c);
|
||||
#elif CONFIG_BACKLIGHT==BL_IRIVER_IFP7XX
|
||||
GPIO3_SET = 1;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -279,6 +281,8 @@ static void __backlight_off(void)
|
|||
|
||||
/* set port L07 off */
|
||||
outl(((0x100 | 0) << 7), 0x6000d12c);
|
||||
#elif CONFIG_BACKLIGHT==BL_IRIVER_IFP7XX
|
||||
GPIO3_CLR = 1;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue