[PATCH] netfilter: bridge: drop a broken include

2019-09-15 Thread Adam Borowski
This caused a build failure if CONFIG_NF_CONNTRACK_BRIDGE is set but CONFIG_NF_TABLES=n -- and appears to be unused anyway. Signed-off-by: Adam Borowski --- net/bridge/netfilter/nf_conntrack_bridge.c | 1 - 1 file changed, 1 deletion(-) diff --git a/net/bridge/netfilter/nf_conntrack_bridge.c

Re: [PATCH] wanxl: use m68k-linux-gnu-as if available

2017-10-19 Thread Adam Borowski
On Thu, Oct 19, 2017 at 07:25:17PM +0200, Krzysztof Halasa wrote: > David Miller writes: > > > We don't even know if whatever "as68k" is would be the same thing > > as GNU as and generate the same binaries. > > It's GNU as, likewise ld68k, though I have no idea if recent versions > would compile

Re: [PATCH] wanxl: use m68k-linux-gnu-as if available

2017-10-18 Thread Adam Borowski
On Wed, Oct 18, 2017 at 12:08:12PM +0100, David Miller wrote: > From: Adam Borowski > Date: Fri, 13 Oct 2017 01:24:34 +0200 > > > This fixes build failure on Debian based systems: GNU as is the only m68k > > assembler available in the archive (package binutils-m68k-linux-

[PATCH] wanxl: use m68k-linux-gnu-as if available

2017-10-12 Thread Adam Borowski
This fixes build failure on Debian based systems: GNU as is the only m68k assembler available in the archive (package binutils-m68k-linux-gnu). Signed-off-by: Adam Borowski --- I have no relevant hardware, thus I can't check whether the built firmware actually works. Some opcodes are trans

[PATCH v2] rtl8xxxu: Don't printk raw binary if serial number is not burned in.

2017-09-08 Thread Adam Borowski
I assume that a blank efuse comes with all ones, thus I did not bother recognizing other possible junk values. This matches 100% of dongles I've seen (a single Gembird 8192eu). Signed-off-by: Adam Borowski --- v2: strncmp("goofy string") -> memchr_inv() Stefano Brivio wrote

[PATCH] rtl8xxxu: Don't printk raw binary if serial number is not burned in.

2017-09-07 Thread Adam Borowski
I assume that a blank efuse comes with all ones, thus I did not bother recognizing other possible junk values. This matches 100% of dongles I've seen (a single Gembird 8192eu). Signed-off-by: Adam Borowski --- drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_8192e.c | 6 +- 1 file chang