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:
Nathan Whitehorn 2008-11-12 17:33:36 +00:00
parent 44ab20591b
commit 669518d7d5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=184890

View File

@ -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;