0f5b1a3eca
Changelog: * https://www.kernel.org/pub/linux/kernel/v4.x/ChangeLog-4.0.5 Signed-off-by: Jonas Gorski <jogo@openwrt.org> SVN-Revision: 46063
39 lines
1.2 KiB
Diff
39 lines
1.2 KiB
Diff
From 50c979109c484c07358a1ac75b99df36d563c132 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Rafa=C5=82=20Mi=C5=82ecki?= <zajec5@gmail.com>
|
|
Date: Wed, 1 Apr 2015 08:23:03 +0200
|
|
Subject: [PATCH] MIPS: BCM47XX: Include io.h directly and fix brace indent
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
We use IO functions like readl & ioremap_nocache, so include linux/io.h
|
|
|
|
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
|
|
Cc: linux-mips@linux-mips.org
|
|
Cc: Hauke Mehrtens <hauke@hauke-m.de>
|
|
Patchwork: https://patchwork.linux-mips.org/patch/9650/
|
|
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
|
|
---
|
|
arch/mips/bcm47xx/nvram.c | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
--- a/arch/mips/bcm47xx/nvram.c
|
|
+++ b/arch/mips/bcm47xx/nvram.c
|
|
@@ -11,6 +11,7 @@
|
|
* option) any later version.
|
|
*/
|
|
|
|
+#include <linux/io.h>
|
|
#include <linux/types.h>
|
|
#include <linux/module.h>
|
|
#include <linux/kernel.h>
|
|
@@ -203,7 +204,7 @@ int bcm47xx_nvram_getenv(const char *nam
|
|
if (eq - var == strlen(name) &&
|
|
strncmp(var, name, eq - var) == 0)
|
|
return snprintf(val, val_len, "%s", value);
|
|
- }
|
|
+ }
|
|
return -ENOENT;
|
|
}
|
|
EXPORT_SYMBOL(bcm47xx_nvram_getenv);
|