Remove redundant assigment of variable to itself

Change-Id: Ibecd8c869280a55a0716e631f44ab556f7dbd8b5
This commit is contained in:
Bertrik Sikken 2013-03-24 16:24:40 +01:00
parent 9b8f11d94a
commit 575d00e3b7

View file

@ -794,7 +794,7 @@ bool usb_inserted(void)
void usb_acknowledge(long id)
{
id = id;
(void)id;
}
void usb_init(void)