[MIPS] Fix "no space between function name and open parenthesis" warnings.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
@@ -14,7 +14,7 @@ int inventory_items = 0;
|
||||
|
||||
static inventory_t inventory [MAX_INVENTORY];
|
||||
|
||||
void add_to_inventory (int class, int type, int controller, int unit, int state)
|
||||
void add_to_inventory(int class, int type, int controller, int unit, int state)
|
||||
{
|
||||
inventory_t *ni = &inventory [inventory_items];
|
||||
|
||||
@@ -30,7 +30,7 @@ void add_to_inventory (int class, int type, int controller, int unit, int state)
|
||||
inventory_items++;
|
||||
}
|
||||
|
||||
int dump_inventory_to_user (void __user *userbuf, int size)
|
||||
int dump_inventory_to_user(void __user *userbuf, int size)
|
||||
{
|
||||
inventory_t *inv = &inventory [0];
|
||||
inventory_t __user *user = userbuf;
|
||||
@@ -45,7 +45,7 @@ int dump_inventory_to_user (void __user *userbuf, int size)
|
||||
return -EFAULT;
|
||||
user++;
|
||||
}
|
||||
return inventory_items * sizeof (inventory_t);
|
||||
return inventory_items * sizeof(inventory_t);
|
||||
}
|
||||
|
||||
int __init init_inventory(void)
|
||||
@@ -55,24 +55,24 @@ int __init init_inventory(void)
|
||||
* most likely this will not let just anyone run the X server
|
||||
* until we put the right values all over the place
|
||||
*/
|
||||
add_to_inventory (10, 3, 0, 0, 16400);
|
||||
add_to_inventory (1, 1, 150, -1, 12);
|
||||
add_to_inventory (1, 3, 0, 0, 8976);
|
||||
add_to_inventory (1, 2, 0, 0, 8976);
|
||||
add_to_inventory (4, 8, 0, 0, 2);
|
||||
add_to_inventory (5, 5, 0, 0, 1);
|
||||
add_to_inventory (3, 3, 0, 0, 32768);
|
||||
add_to_inventory (3, 4, 0, 0, 32768);
|
||||
add_to_inventory (3, 8, 0, 0, 524288);
|
||||
add_to_inventory (3, 9, 0, 0, 64);
|
||||
add_to_inventory (3, 1, 0, 0, 67108864);
|
||||
add_to_inventory (12, 3, 0, 0, 16);
|
||||
add_to_inventory (8, 7, 17, 0, 16777472);
|
||||
add_to_inventory (8, 0, 0, 0, 1);
|
||||
add_to_inventory (2, 1, 0, 13, 2);
|
||||
add_to_inventory (2, 2, 0, 2, 0);
|
||||
add_to_inventory (2, 2, 0, 1, 0);
|
||||
add_to_inventory (7, 14, 0, 0, 6);
|
||||
add_to_inventory(10, 3, 0, 0, 16400);
|
||||
add_to_inventory(1, 1, 150, -1, 12);
|
||||
add_to_inventory(1, 3, 0, 0, 8976);
|
||||
add_to_inventory(1, 2, 0, 0, 8976);
|
||||
add_to_inventory(4, 8, 0, 0, 2);
|
||||
add_to_inventory(5, 5, 0, 0, 1);
|
||||
add_to_inventory(3, 3, 0, 0, 32768);
|
||||
add_to_inventory(3, 4, 0, 0, 32768);
|
||||
add_to_inventory(3, 8, 0, 0, 524288);
|
||||
add_to_inventory(3, 9, 0, 0, 64);
|
||||
add_to_inventory(3, 1, 0, 0, 67108864);
|
||||
add_to_inventory(12, 3, 0, 0, 16);
|
||||
add_to_inventory(8, 7, 17, 0, 16777472);
|
||||
add_to_inventory(8, 0, 0, 0, 1);
|
||||
add_to_inventory(2, 1, 0, 13, 2);
|
||||
add_to_inventory(2, 2, 0, 2, 0);
|
||||
add_to_inventory(2, 2, 0, 1, 0);
|
||||
add_to_inventory(7, 14, 0, 0, 6);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user