From: Felix Fietkau Date: Sun, 15 May 2016 15:12:01 +0000 (+0200) Subject: kernel: fix a compiler warning on 64 bit systems X-Git-Tag: v17.01.0-rc1~2800 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=ce21e18d57a75831d094b79c73ca2153e40afb17 kernel: fix a compiler warning on 64 bit systems Signed-off-by: Felix Fietkau --- diff --git a/target/linux/generic/patches-4.4/642-bridge_port_isolate.patch b/target/linux/generic/patches-4.4/642-bridge_port_isolate.patch index 1dc32b6f53..1f1cb1d394 100644 --- a/target/linux/generic/patches-4.4/642-bridge_port_isolate.patch +++ b/target/linux/generic/patches-4.4/642-bridge_port_isolate.patch @@ -24,7 +24,7 @@ Isolating individual bridge ports + int isolate_mode = (p->flags & BR_ISOLATE_MODE) ? 1 : 0; + return sprintf(buf, "%d\n", isolate_mode); +} -+static ssize_t store_isolate_mode(struct net_bridge_port *p, unsigned long v) ++static int store_isolate_mode(struct net_bridge_port *p, unsigned long v) +{ + if (v) + p->flags |= BR_ISOLATE_MODE;