mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 13:12:37 -05:00
hosted: open input device as read-only.
Change-Id: I4dcd98f45f41fe06a0a75a2a0dd45c753c2cf365
This commit is contained in:
parent
1a76bc403e
commit
c6d2a0358f
5 changed files with 14 additions and 15 deletions
|
|
@ -76,7 +76,7 @@ static int button_map(int keycode)
|
|||
|
||||
void button_init_device(void)
|
||||
{
|
||||
const char * const input_devs[] = {
|
||||
const char * const input_devs[NR_POLL_DESC] = {
|
||||
"/dev/input/event0",
|
||||
"/dev/input/event1",
|
||||
"/dev/input/event2"
|
||||
|
|
@ -84,7 +84,7 @@ void button_init_device(void)
|
|||
|
||||
for(int i = 0; i < NR_POLL_DESC; i++)
|
||||
{
|
||||
int fd = open(input_devs[i], O_RDWR | O_CLOEXEC);
|
||||
int fd = open(input_devs[i], O_RDONLY | O_CLOEXEC);
|
||||
|
||||
if(fd < 0)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue