mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-20 15:43:16 +00:00
Probe ADB miscellaneous devices (ID 7) instead of stopping at ID 6. This
allows us to probe the brightness and volume control buttons on PPC Apple laptops, though there is not yet a driver to do anything useful with them.
This commit is contained in:
parent
44ab20591b
commit
669518d7d5
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=184890
@ -134,7 +134,7 @@ adb_bus_enumerate(void *xdev)
|
||||
/* Enumerate bus */
|
||||
next_free = 8;
|
||||
|
||||
for (i = 1; i < 7; i++) {
|
||||
for (i = 1; i <= 7; i++) {
|
||||
int8_t first_relocated = -1;
|
||||
int reply = 0;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user