Skip to content
Snippets Groups Projects
Commit 59e4080c authored by Wills Wang's avatar Wills Wang Committed by Daniel Schwierzeck
Browse files

ath79: add readonly attribute for ath79_soc_desc


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

Signed-off-by: default avatarWills Wang <wills.wang@live.com>
parent 5691d10a
No related merge requests found
......@@ -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",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment