0db070a424
- misleading indentation - strict prototypes [1] [1] int foo(void) {...} instead of int foo() {...} drivers: usb: Fix misleading indentation
12 lines
141 B
C
Executable file
12 lines
141 B
C
Executable file
#include <gpexbe_qos.h>
|
|
|
|
int gpexbe_qos_init(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
void gpexbe_qos_term(void)
|
|
{
|
|
/* TODO: unset and unregister */
|
|
return;
|
|
}
|