[U-Boot] [PATCH 4/4] ath79: add readonly attribute for ath79_soc_desc

Wills Wang wills.wang at live.com
Tue Apr 12 12:24:10 CEST 2016


use 'const' keywork to qualify readonly attribute for lookup-table member

Signed-off-by: Wills Wang <wills.wang at live.com>
---

 arch/mips/mach-ath79/cpu.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/arch/mips/mach-ath79/cpu.c b/arch/mips/mach-ath79/cpu.c
index c6122f2..5756a06 100644
--- a/arch/mips/mach-ath79/cpu.c
+++ b/arch/mips/mach-ath79/cpu.c
@@ -12,13 +12,13 @@
 #include <mach/ar71xx_regs.h>
 
 struct ath79_soc_desc {
-	enum ath79_soc_type soc;
+	const enum ath79_soc_type soc;
 	const char *chip;
-	int major;
-	int minor;
+	const int major;
+	const int minor;
 };
 
-static struct ath79_soc_desc desc[] = {
+static const struct ath79_soc_desc desc[] = {
 	{ATH79_SOC_AR7130,      "7130",
 	 REV_ID_MAJOR_AR71XX,   AR71XX_REV_ID_MINOR_AR7130},
 	{ATH79_SOC_AR7141,      "7141",
-- 
1.9.1



More information about the U-Boot mailing list