mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-11-27 01:11:31 +00:00
Older gcc (< 4.4) doesn't like files starting with a Unicode BOM:
drivers/net/wireless/ath/wcn36xx/testmode.c:1: error: stray ‘\357’ in program
drivers/net/wireless/ath/wcn36xx/testmode.c:1: error: stray ‘\273’ in program
drivers/net/wireless/ath/wcn36xx/testmode.c:1: error: stray ‘\277’ in program
Remove the BOM, the rest of the file is plain ASCII anyway.
Output of "file drivers/net/wireless/ath/wcn36xx/testmode.c" before:
drivers/net/wireless/ath/wcn36xx/testmode.c: C source, UTF-8 Unicode (with BOM) text
and after:
drivers/net/wireless/ath/wcn36xx/testmode.c: C source, ASCII text
Fixes:
|
||
|---|---|---|
| .. | ||
| debug.c | ||
| debug.h | ||
| dxe.c | ||
| dxe.h | ||
| hal.h | ||
| Kconfig | ||
| main.c | ||
| Makefile | ||
| pmc.c | ||
| pmc.h | ||
| smd.c | ||
| smd.h | ||
| testmode.c | ||
| testmode.h | ||
| testmode_i.h | ||
| txrx.c | ||
| txrx.h | ||
| wcn36xx.h | ||