Commit 7462543a authored by Linus Torvalds's avatar Linus Torvalds

Merge tag 'edac_fixes_for_3.10' of git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp

Pull two small EDAC fixes from Borislav Petkov.

* tag 'edac_fixes_for_3.10' of git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp:
  EDAC: Don't give write permission to read-only files
  EDAC, mc_sysfs.c: Fix string array pointer types
parents bde9d73d c8c64d16
...@@ -87,7 +87,7 @@ static struct device *mci_pdev; ...@@ -87,7 +87,7 @@ static struct device *mci_pdev;
/* /*
* various constants for Memory Controllers * various constants for Memory Controllers
*/ */
static const char *mem_types[] = { static const char * const mem_types[] = {
[MEM_EMPTY] = "Empty", [MEM_EMPTY] = "Empty",
[MEM_RESERVED] = "Reserved", [MEM_RESERVED] = "Reserved",
[MEM_UNKNOWN] = "Unknown", [MEM_UNKNOWN] = "Unknown",
...@@ -107,7 +107,7 @@ static const char *mem_types[] = { ...@@ -107,7 +107,7 @@ static const char *mem_types[] = {
[MEM_RDDR3] = "Registered-DDR3" [MEM_RDDR3] = "Registered-DDR3"
}; };
static const char *dev_types[] = { static const char * const dev_types[] = {
[DEV_UNKNOWN] = "Unknown", [DEV_UNKNOWN] = "Unknown",
[DEV_X1] = "x1", [DEV_X1] = "x1",
[DEV_X2] = "x2", [DEV_X2] = "x2",
...@@ -118,7 +118,7 @@ static const char *dev_types[] = { ...@@ -118,7 +118,7 @@ static const char *dev_types[] = {
[DEV_X64] = "x64" [DEV_X64] = "x64"
}; };
static const char *edac_caps[] = { static const char * const edac_caps[] = {
[EDAC_UNKNOWN] = "Unknown", [EDAC_UNKNOWN] = "Unknown",
[EDAC_NONE] = "None", [EDAC_NONE] = "None",
[EDAC_RESERVED] = "Reserved", [EDAC_RESERVED] = "Reserved",
...@@ -327,17 +327,17 @@ static struct device_attribute *dynamic_csrow_dimm_attr[] = { ...@@ -327,17 +327,17 @@ static struct device_attribute *dynamic_csrow_dimm_attr[] = {
}; };
/* possible dynamic channel ce_count attribute files */ /* possible dynamic channel ce_count attribute files */
DEVICE_CHANNEL(ch0_ce_count, S_IRUGO | S_IWUSR, DEVICE_CHANNEL(ch0_ce_count, S_IRUGO,
channel_ce_count_show, NULL, 0); channel_ce_count_show, NULL, 0);
DEVICE_CHANNEL(ch1_ce_count, S_IRUGO | S_IWUSR, DEVICE_CHANNEL(ch1_ce_count, S_IRUGO,
channel_ce_count_show, NULL, 1); channel_ce_count_show, NULL, 1);
DEVICE_CHANNEL(ch2_ce_count, S_IRUGO | S_IWUSR, DEVICE_CHANNEL(ch2_ce_count, S_IRUGO,
channel_ce_count_show, NULL, 2); channel_ce_count_show, NULL, 2);
DEVICE_CHANNEL(ch3_ce_count, S_IRUGO | S_IWUSR, DEVICE_CHANNEL(ch3_ce_count, S_IRUGO,
channel_ce_count_show, NULL, 3); channel_ce_count_show, NULL, 3);
DEVICE_CHANNEL(ch4_ce_count, S_IRUGO | S_IWUSR, DEVICE_CHANNEL(ch4_ce_count, S_IRUGO,
channel_ce_count_show, NULL, 4); channel_ce_count_show, NULL, 4);
DEVICE_CHANNEL(ch5_ce_count, S_IRUGO | S_IWUSR, DEVICE_CHANNEL(ch5_ce_count, S_IRUGO,
channel_ce_count_show, NULL, 5); channel_ce_count_show, NULL, 5);
/* Total possible dynamic ce_count attribute file table */ /* Total possible dynamic ce_count attribute file table */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment