diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2018-11-14 21:37:47 +0100 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2018-12-15 12:50:06 +0100 |
commit | a272af75cd8c67d265400f96c1e6bb172315c23c (patch) | |
tree | 7a18de06d9eb5eaef2d58fb1792f51b0dcd15160 /target/linux/generic/hack-4.9 | |
parent | aa3b6a08c5616fdebd3b219f021a9674533a6519 (diff) | |
download | upstream-a272af75cd8c67d265400f96c1e6bb172315c23c.tar.gz upstream-a272af75cd8c67d265400f96c1e6bb172315c23c.tar.bz2 upstream-a272af75cd8c67d265400f96c1e6bb172315c23c.zip |
kernel: Move modifications of b53.h into patch
The b53 driver was added as a dsa driver into the mainline Linux kernel,
but we still use the swconfig based driver. The header file b53.h is
used by both drivers, but the swconfig one needs an extra member, add
this one in a patch to not overwrite the version shipped with the
mainline kernel.
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Diffstat (limited to 'target/linux/generic/hack-4.9')
-rw-r--r-- | target/linux/generic/hack-4.9/700-swconfig_switch_drivers.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/target/linux/generic/hack-4.9/700-swconfig_switch_drivers.patch b/target/linux/generic/hack-4.9/700-swconfig_switch_drivers.patch index 760ba4fc80..af8840fde2 100644 --- a/target/linux/generic/hack-4.9/700-swconfig_switch_drivers.patch +++ b/target/linux/generic/hack-4.9/700-swconfig_switch_drivers.patch @@ -136,3 +136,15 @@ Signed-off-by: Felix Fietkau <nbd@nbd.name> header-y += synclink.h header-y += sync_file.h header-y += sysctl.h +--- a/include/linux/platform_data/b53.h ++++ b/include/linux/platform_data/b53.h +@@ -25,6 +25,9 @@ struct b53_platform_data { + u32 chip_id; + u16 enabled_ports; + ++ /* allow to specify an ethX alias */ ++ const char *alias; ++ + /* only used by MMAP'd driver */ + unsigned big_endian:1; + void __iomem *regs; |