mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2025-11-02 14:04:26 -05:00
Since kernel 4.15, init_timer is not available anymore, and has been
replaced by timer_setup. The fixes compilation of wl_linuc.c, which
returned the following errors beforehand (line-wrapped manually):
.../broadcom-wl-5.10.56.27.3/driver/wl_linux.c: In function 'wl_init_timer':
.../broadcom-wl-5.10.56.27.3/driver/wl_linux.c:2576:2: error: implicit
declaration of function 'init_timer'; did you mean 'init_timers'?
[-Werror=implicit-function-declaration]
init_timer(&t->timer);
^~~~~~~~~~
init_timers
.../broadcom-wl-5.10.56.27.3/driver/wl_linux.c:2577:10: error:
'struct timer_list' has no member named 'data'
t->timer.data = (ulong) t;
^
.../broadcom-wl-5.10.56.27.3/driver/wl_linux.c:2578:20: error: assignment
to 'void (*)(struct timer_list *)' from incompatible pointer type
'void (*)(ulong)' {aka 'void (*)(long unsigned int)'}
[-Werror=incompatible-pointer-types]
t->timer.function = wl_timer;
This should fix build of several devices on bcm63xx with testing
kernel (4.19).
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
|
||
|---|---|---|
| .. | ||
| 003-compat-2.6.35.patch | ||
| 004-remove-pcmcia.patch | ||
| 005-fix-mem-leak-on-unload.patch | ||
| 006-generic-dma-api.patch | ||
| 007-use-glue-driver.patch | ||
| 008-fix_virtual_interfaces.patch | ||
| 009-fix_compile_3_2.patch | ||
| 010-remove_irqf_samble_random.patch | ||
| 011-fix_compile_3_4.patch | ||
| 012-compat-3.10.patch | ||
| 013-interface-name.patch | ||
| 014-fix-band-reporting.patch | ||
| 015-support-probe-of-wds-interfaces.patch | ||
| 020-musl-fixes.patch | ||
| 030-remove_devinit_devexit.patch | ||
| 040-remove_last_rx_usage.patch | ||
| 100-fix_nvram_two_devices.patch | ||
| 110-add_number_to_dev_name.patch | ||
| 120-fixup-mac-addresses.patch | ||
| 200-add_bcm_a8xx_support.patch | ||
| 910-fallback-sprom.patch | ||
| 912-pci-bus-nvram-hack.patch | ||
| 913-avoid-dbe-on-ifs_ctl-readw-hack.patch | ||
| 914-eliminate-date-time-error.patch | ||
| 915-fix-wl_timer-for-4_15.patch | ||