You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
staging: usbip: removed unnecessary for loop
This for loop is not needed, since STUB_BUSID_OTHER is defined as 0. In Addition added a comment if STUB_BUSID_OTHER changes sometime. Signed-off-by: Kurt Kanzenbach <ly80toro@cip.cs.fau.de> Signed-off-by: Stefan Reif <ke42caxa@cip.cs.fau.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
2183b77ece
commit
521e1e7cc9
@@ -38,11 +38,11 @@ static spinlock_t busid_table_lock;
|
||||
|
||||
static void init_busid_table(void)
|
||||
{
|
||||
int i;
|
||||
|
||||
/*
|
||||
* This also sets the bus_table[i].status to
|
||||
* STUB_BUSID_OTHER, which is 0.
|
||||
*/
|
||||
memset(busid_table, 0, sizeof(busid_table));
|
||||
for (i = 0; i < MAX_BUSID; i++)
|
||||
busid_table[i].status = STUB_BUSID_OTHER;
|
||||
|
||||
spin_lock_init(&busid_table_lock);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user