mirror of https://github.com/torvalds/linux.git
The following build warning highlights some unused code:
arch/x86/platform/olpc/olpc_dt.c: In function ‘olpc_dt_compatible_match’:
arch/x86/platform/olpc/olpc_dt.c:222:12: warning: variable ‘len’ set but not used [-Wunused-but-set-variable]
The compiler is right, the local variable 'len' is set but never used,
so remove it.
Fixes:
|
||
|---|---|---|
| .. | ||
| Makefile | ||
| olpc-xo1-pm.c | ||
| olpc-xo1-rtc.c | ||
| olpc-xo1-sci.c | ||
| olpc-xo15-sci.c | ||
| olpc.c | ||
| olpc_dt.c | ||
| olpc_ofw.c | ||
| xo1-wakeup.S | ||