1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-01 08:42:12 +02:00

Code cleanup: fix old style assignment ambiguities like "=-" etc.

Signed-off-by: Wolfgang Denk <wd@denx.de>
This commit is contained in:
Wolfgang Denk
2008-07-14 15:19:07 +02:00
parent d7854223c5
commit d0ff51ba5d
31 changed files with 65 additions and 65 deletions

View File

@@ -730,8 +730,8 @@ static int usb_kbd_get_hid_desc(struct usb_device *dev)
return -1;
}
printf(" report descriptor (size %u, read %d)\n", len, index);
start=&buffer[0];
end=&buffer[len];
start = &buffer[0];
end = &buffer[len];
i=0;
do {
index=fetch_item(start,end,&item);