diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2017-02-15 21:54:37 +0100 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2017-02-16 00:46:23 +0100 |
commit | 236840eb473d271450d9864d1c46927ddaf305ee (patch) | |
tree | c9b34623da285c535cafdcd7fbc286a5f39f7462 /target/linux/cns3xxx/patches-4.9 | |
parent | d517f043434901452fd19dabc7deefb58179c444 (diff) | |
download | upstream-236840eb473d271450d9864d1c46927ddaf305ee.tar.gz upstream-236840eb473d271450d9864d1c46927ddaf305ee.tar.bz2 upstream-236840eb473d271450d9864d1c46927ddaf305ee.zip |
kernel: update kernel 4.9 to version 4.9.10
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Diffstat (limited to 'target/linux/cns3xxx/patches-4.9')
-rw-r--r-- | target/linux/cns3xxx/patches-4.9/097-l2x0_cmdline_disable.patch | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/target/linux/cns3xxx/patches-4.9/097-l2x0_cmdline_disable.patch b/target/linux/cns3xxx/patches-4.9/097-l2x0_cmdline_disable.patch index 3227840935..b4720b11de 100644 --- a/target/linux/cns3xxx/patches-4.9/097-l2x0_cmdline_disable.patch +++ b/target/linux/cns3xxx/patches-4.9/097-l2x0_cmdline_disable.patch @@ -8,15 +8,15 @@ +static int cns3xxx_l2x0_enable = 1; + +static int __init cns3xxx_l2x0_disable(char *s) - { -- void __iomem *base = ioremap(CNS3XXX_L2C_BASE, SZ_4K); ++{ + cns3xxx_l2x0_enable = 0; + return 1; +} +__setup("nol2x0", cns3xxx_l2x0_disable); + +static int __init cns3xxx_l2x0_init(void) -+{ + { +- void __iomem *base = ioremap(CNS3XXX_L2C_BASE, SZ_4K); + void __iomem *base; u32 val; |