diff options
| -rw-r--r-- | arch/x86/events/intel/uncore.c | 2 | ||||
| -rw-r--r-- | arch/x86/events/intel/uncore_nhmex.c | 12 | ||||
| -rw-r--r-- | arch/x86/events/intel/uncore_snb.c | 6 | ||||
| -rw-r--r-- | arch/x86/events/intel/uncore_snbep.c | 42 | ||||
| -rw-r--r-- | arch/x86/kernel/cpu/mcheck/therm_throt.c | 2 | ||||
| -rw-r--r-- | arch/x86/kernel/cpu/microcode/core.c | 4 | ||||
| -rw-r--r-- | arch/x86/kernel/ksysfs.c | 4 |
7 files changed, 36 insertions, 36 deletions
diff --git a/arch/x86/events/intel/uncore.c b/arch/x86/events/intel/uncore.c index 44ec523287f6..1c5390f1cf09 100644 --- a/arch/x86/events/intel/uncore.c +++ b/arch/x86/events/intel/uncore.c | |||
| @@ -721,7 +721,7 @@ static struct attribute *uncore_pmu_attrs[] = { | |||
| 721 | NULL, | 721 | NULL, |
| 722 | }; | 722 | }; |
| 723 | 723 | ||
| 724 | static struct attribute_group uncore_pmu_attr_group = { | 724 | static const struct attribute_group uncore_pmu_attr_group = { |
| 725 | .attrs = uncore_pmu_attrs, | 725 | .attrs = uncore_pmu_attrs, |
| 726 | }; | 726 | }; |
| 727 | 727 | ||
diff --git a/arch/x86/events/intel/uncore_nhmex.c b/arch/x86/events/intel/uncore_nhmex.c index cda569332005..6a5cbe90f859 100644 --- a/arch/x86/events/intel/uncore_nhmex.c +++ b/arch/x86/events/intel/uncore_nhmex.c | |||
| @@ -272,7 +272,7 @@ static struct attribute *nhmex_uncore_ubox_formats_attr[] = { | |||
| 272 | NULL, | 272 | NULL, |
| 273 | }; | 273 | }; |
| 274 | 274 | ||
| 275 | static struct attribute_group nhmex_uncore_ubox_format_group = { | 275 | static const struct attribute_group nhmex_uncore_ubox_format_group = { |
| 276 | .name = "format", | 276 | .name = "format", |
| 277 | .attrs = nhmex_uncore_ubox_formats_attr, | 277 | .attrs = nhmex_uncore_ubox_formats_attr, |
| 278 | }; | 278 | }; |
| @@ -299,7 +299,7 @@ static struct attribute *nhmex_uncore_cbox_formats_attr[] = { | |||
| 299 | NULL, | 299 | NULL, |
| 300 | }; | 300 | }; |
| 301 | 301 | ||
| 302 | static struct attribute_group nhmex_uncore_cbox_format_group = { | 302 | static const struct attribute_group nhmex_uncore_cbox_format_group = { |
| 303 | .name = "format", | 303 | .name = "format", |
| 304 | .attrs = nhmex_uncore_cbox_formats_attr, | 304 | .attrs = nhmex_uncore_cbox_formats_attr, |
| 305 | }; | 305 | }; |
| @@ -407,7 +407,7 @@ static struct attribute *nhmex_uncore_bbox_formats_attr[] = { | |||
| 407 | NULL, | 407 | NULL, |
| 408 | }; | 408 | }; |
| 409 | 409 | ||
| 410 | static struct attribute_group nhmex_uncore_bbox_format_group = { | 410 | static const struct attribute_group nhmex_uncore_bbox_format_group = { |
| 411 | .name = "format", | 411 | .name = "format", |
| 412 | .attrs = nhmex_uncore_bbox_formats_attr, | 412 | .attrs = nhmex_uncore_bbox_formats_attr, |
| 413 | }; | 413 | }; |
| @@ -484,7 +484,7 @@ static struct attribute *nhmex_uncore_sbox_formats_attr[] = { | |||
| 484 | NULL, | 484 | NULL, |
| 485 | }; | 485 | }; |
| 486 | 486 | ||
| 487 | static struct attribute_group nhmex_uncore_sbox_format_group = { | 487 | static const struct attribute_group nhmex_uncore_sbox_format_group = { |
| 488 | .name = "format", | 488 | .name = "format", |
| 489 | .attrs = nhmex_uncore_sbox_formats_attr, | 489 | .attrs = nhmex_uncore_sbox_formats_attr, |
| 490 | }; | 490 | }; |
| @@ -898,7 +898,7 @@ static struct attribute *nhmex_uncore_mbox_formats_attr[] = { | |||
| 898 | NULL, | 898 | NULL, |
| 899 | }; | 899 | }; |
| 900 | 900 | ||
| 901 | static struct attribute_group nhmex_uncore_mbox_format_group = { | 901 | static const struct attribute_group nhmex_uncore_mbox_format_group = { |
| 902 | .name = "format", | 902 | .name = "format", |
| 903 | .attrs = nhmex_uncore_mbox_formats_attr, | 903 | .attrs = nhmex_uncore_mbox_formats_attr, |
| 904 | }; | 904 | }; |
| @@ -1163,7 +1163,7 @@ static struct attribute *nhmex_uncore_rbox_formats_attr[] = { | |||
| 1163 | NULL, | 1163 | NULL, |
| 1164 | }; | 1164 | }; |
| 1165 | 1165 | ||
| 1166 | static struct attribute_group nhmex_uncore_rbox_format_group = { | 1166 | static const struct attribute_group nhmex_uncore_rbox_format_group = { |
| 1167 | .name = "format", | 1167 | .name = "format", |
| 1168 | .attrs = nhmex_uncore_rbox_formats_attr, | 1168 | .attrs = nhmex_uncore_rbox_formats_attr, |
| 1169 | }; | 1169 | }; |
diff --git a/arch/x86/events/intel/uncore_snb.c b/arch/x86/events/intel/uncore_snb.c index a3dcc12bef4a..db1127ce685e 100644 --- a/arch/x86/events/intel/uncore_snb.c +++ b/arch/x86/events/intel/uncore_snb.c | |||
| @@ -130,7 +130,7 @@ static struct attribute *snb_uncore_formats_attr[] = { | |||
| 130 | NULL, | 130 | NULL, |
| 131 | }; | 131 | }; |
| 132 | 132 | ||
| 133 | static struct attribute_group snb_uncore_format_group = { | 133 | static const struct attribute_group snb_uncore_format_group = { |
| 134 | .name = "format", | 134 | .name = "format", |
| 135 | .attrs = snb_uncore_formats_attr, | 135 | .attrs = snb_uncore_formats_attr, |
| 136 | }; | 136 | }; |
| @@ -289,7 +289,7 @@ static struct attribute *snb_uncore_imc_formats_attr[] = { | |||
| 289 | NULL, | 289 | NULL, |
| 290 | }; | 290 | }; |
| 291 | 291 | ||
| 292 | static struct attribute_group snb_uncore_imc_format_group = { | 292 | static const struct attribute_group snb_uncore_imc_format_group = { |
| 293 | .name = "format", | 293 | .name = "format", |
| 294 | .attrs = snb_uncore_imc_formats_attr, | 294 | .attrs = snb_uncore_imc_formats_attr, |
| 295 | }; | 295 | }; |
| @@ -769,7 +769,7 @@ static struct attribute *nhm_uncore_formats_attr[] = { | |||
| 769 | NULL, | 769 | NULL, |
| 770 | }; | 770 | }; |
| 771 | 771 | ||
| 772 | static struct attribute_group nhm_uncore_format_group = { | 772 | static const struct attribute_group nhm_uncore_format_group = { |
| 773 | .name = "format", | 773 | .name = "format", |
| 774 | .attrs = nhm_uncore_formats_attr, | 774 | .attrs = nhm_uncore_formats_attr, |
| 775 | }; | 775 | }; |
diff --git a/arch/x86/events/intel/uncore_snbep.c b/arch/x86/events/intel/uncore_snbep.c index 4f9127644b80..db1fe377e6dd 100644 --- a/arch/x86/events/intel/uncore_snbep.c +++ b/arch/x86/events/intel/uncore_snbep.c | |||
| @@ -602,27 +602,27 @@ static struct uncore_event_desc snbep_uncore_qpi_events[] = { | |||
| 602 | { /* end: all zeroes */ }, | 602 | { /* end: all zeroes */ }, |
| 603 | }; | 603 | }; |
| 604 | 604 | ||
| 605 | static struct attribute_group snbep_uncore_format_group = { | 605 | static const struct attribute_group snbep_uncore_format_group = { |
| 606 | .name = "format", | 606 | .name = "format", |
| 607 | .attrs = snbep_uncore_formats_attr, | 607 | .attrs = snbep_uncore_formats_attr, |
| 608 | }; | 608 | }; |
| 609 | 609 | ||
| 610 | static struct attribute_group snbep_uncore_ubox_format_group = { | 610 | static const struct attribute_group snbep_uncore_ubox_format_group = { |
| 611 | .name = "format", | 611 | .name = "format", |
| 612 | .attrs = snbep_uncore_ubox_formats_attr, | 612 | .attrs = snbep_uncore_ubox_formats_attr, |
| 613 | }; | 613 | }; |
| 614 | 614 | ||
| 615 | static struct attribute_group snbep_uncore_cbox_format_group = { | 615 | static const struct attribute_group snbep_uncore_cbox_format_group = { |
| 616 | .name = "format", | 616 | .name = "format", |
| 617 | .attrs = snbep_uncore_cbox_formats_attr, | 617 | .attrs = snbep_uncore_cbox_formats_attr, |
| 618 | }; | 618 | }; |
| 619 | 619 | ||
| 620 | static struct attribute_group snbep_uncore_pcu_format_group = { | 620 | static const struct attribute_group snbep_uncore_pcu_format_group = { |
| 621 | .name = "format", | 621 | .name = "format", |
| 622 | .attrs = snbep_uncore_pcu_formats_attr, | 622 | .attrs = snbep_uncore_pcu_formats_attr, |
| 623 | }; | 623 | }; |
| 624 | 624 | ||
| 625 | static struct attribute_group snbep_uncore_qpi_format_group = { | 625 | static const struct attribute_group snbep_uncore_qpi_format_group = { |
| 626 | .name = "format", | 626 | .name = "format", |
| 627 | .attrs = snbep_uncore_qpi_formats_attr, | 627 | .attrs = snbep_uncore_qpi_formats_attr, |
| 628 | }; | 628 | }; |
| @@ -1431,27 +1431,27 @@ static struct attribute *ivbep_uncore_qpi_formats_attr[] = { | |||
| 1431 | NULL, | 1431 | NULL, |
| 1432 | }; | 1432 | }; |
| 1433 | 1433 | ||
| 1434 | static struct attribute_group ivbep_uncore_format_group = { | 1434 | static const struct attribute_group ivbep_uncore_format_group = { |
| 1435 | .name = "format", | 1435 | .name = "format", |
| 1436 | .attrs = ivbep_uncore_formats_attr, | 1436 | .attrs = ivbep_uncore_formats_attr, |
| 1437 | }; | 1437 | }; |
| 1438 | 1438 | ||
| 1439 | static struct attribute_group ivbep_uncore_ubox_format_group = { | 1439 | static const struct attribute_group ivbep_uncore_ubox_format_group = { |
| 1440 | .name = "format", | 1440 | .name = "format", |
| 1441 | .attrs = ivbep_uncore_ubox_formats_attr, | 1441 | .attrs = ivbep_uncore_ubox_formats_attr, |
| 1442 | }; | 1442 | }; |
| 1443 | 1443 | ||
| 1444 | static struct attribute_group ivbep_uncore_cbox_format_group = { | 1444 | static const struct attribute_group ivbep_uncore_cbox_format_group = { |
| 1445 | .name = "format", | 1445 | .name = "format", |
| 1446 | .attrs = ivbep_uncore_cbox_formats_attr, | 1446 | .attrs = ivbep_uncore_cbox_formats_attr, |
| 1447 | }; | 1447 | }; |
| 1448 | 1448 | ||
| 1449 | static struct attribute_group ivbep_uncore_pcu_format_group = { | 1449 | static const struct attribute_group ivbep_uncore_pcu_format_group = { |
| 1450 | .name = "format", | 1450 | .name = "format", |
| 1451 | .attrs = ivbep_uncore_pcu_formats_attr, | 1451 | .attrs = ivbep_uncore_pcu_formats_attr, |
| 1452 | }; | 1452 | }; |
| 1453 | 1453 | ||
| 1454 | static struct attribute_group ivbep_uncore_qpi_format_group = { | 1454 | static const struct attribute_group ivbep_uncore_qpi_format_group = { |
| 1455 | .name = "format", | 1455 | .name = "format", |
| 1456 | .attrs = ivbep_uncore_qpi_formats_attr, | 1456 | .attrs = ivbep_uncore_qpi_formats_attr, |
| 1457 | }; | 1457 | }; |
| @@ -1887,7 +1887,7 @@ static struct attribute *knl_uncore_ubox_formats_attr[] = { | |||
| 1887 | NULL, | 1887 | NULL, |
| 1888 | }; | 1888 | }; |
| 1889 | 1889 | ||
| 1890 | static struct attribute_group knl_uncore_ubox_format_group = { | 1890 | static const struct attribute_group knl_uncore_ubox_format_group = { |
| 1891 | .name = "format", | 1891 | .name = "format", |
| 1892 | .attrs = knl_uncore_ubox_formats_attr, | 1892 | .attrs = knl_uncore_ubox_formats_attr, |
| 1893 | }; | 1893 | }; |
| @@ -1927,7 +1927,7 @@ static struct attribute *knl_uncore_cha_formats_attr[] = { | |||
| 1927 | NULL, | 1927 | NULL, |
| 1928 | }; | 1928 | }; |
| 1929 | 1929 | ||
| 1930 | static struct attribute_group knl_uncore_cha_format_group = { | 1930 | static const struct attribute_group knl_uncore_cha_format_group = { |
| 1931 | .name = "format", | 1931 | .name = "format", |
| 1932 | .attrs = knl_uncore_cha_formats_attr, | 1932 | .attrs = knl_uncore_cha_formats_attr, |
| 1933 | }; | 1933 | }; |
| @@ -2037,7 +2037,7 @@ static struct attribute *knl_uncore_pcu_formats_attr[] = { | |||
| 2037 | NULL, | 2037 | NULL, |
| 2038 | }; | 2038 | }; |
| 2039 | 2039 | ||
| 2040 | static struct attribute_group knl_uncore_pcu_format_group = { | 2040 | static const struct attribute_group knl_uncore_pcu_format_group = { |
| 2041 | .name = "format", | 2041 | .name = "format", |
| 2042 | .attrs = knl_uncore_pcu_formats_attr, | 2042 | .attrs = knl_uncore_pcu_formats_attr, |
| 2043 | }; | 2043 | }; |
| @@ -2187,7 +2187,7 @@ static struct attribute *knl_uncore_irp_formats_attr[] = { | |||
| 2187 | NULL, | 2187 | NULL, |
| 2188 | }; | 2188 | }; |
| 2189 | 2189 | ||
| 2190 | static struct attribute_group knl_uncore_irp_format_group = { | 2190 | static const struct attribute_group knl_uncore_irp_format_group = { |
| 2191 | .name = "format", | 2191 | .name = "format", |
| 2192 | .attrs = knl_uncore_irp_formats_attr, | 2192 | .attrs = knl_uncore_irp_formats_attr, |
| 2193 | }; | 2193 | }; |
| @@ -2385,7 +2385,7 @@ static struct attribute *hswep_uncore_ubox_formats_attr[] = { | |||
| 2385 | NULL, | 2385 | NULL, |
| 2386 | }; | 2386 | }; |
| 2387 | 2387 | ||
| 2388 | static struct attribute_group hswep_uncore_ubox_format_group = { | 2388 | static const struct attribute_group hswep_uncore_ubox_format_group = { |
| 2389 | .name = "format", | 2389 | .name = "format", |
| 2390 | .attrs = hswep_uncore_ubox_formats_attr, | 2390 | .attrs = hswep_uncore_ubox_formats_attr, |
| 2391 | }; | 2391 | }; |
| @@ -2439,7 +2439,7 @@ static struct attribute *hswep_uncore_cbox_formats_attr[] = { | |||
| 2439 | NULL, | 2439 | NULL, |
| 2440 | }; | 2440 | }; |
| 2441 | 2441 | ||
| 2442 | static struct attribute_group hswep_uncore_cbox_format_group = { | 2442 | static const struct attribute_group hswep_uncore_cbox_format_group = { |
| 2443 | .name = "format", | 2443 | .name = "format", |
| 2444 | .attrs = hswep_uncore_cbox_formats_attr, | 2444 | .attrs = hswep_uncore_cbox_formats_attr, |
| 2445 | }; | 2445 | }; |
| @@ -2621,7 +2621,7 @@ static struct attribute *hswep_uncore_sbox_formats_attr[] = { | |||
| 2621 | NULL, | 2621 | NULL, |
| 2622 | }; | 2622 | }; |
| 2623 | 2623 | ||
| 2624 | static struct attribute_group hswep_uncore_sbox_format_group = { | 2624 | static const struct attribute_group hswep_uncore_sbox_format_group = { |
| 2625 | .name = "format", | 2625 | .name = "format", |
| 2626 | .attrs = hswep_uncore_sbox_formats_attr, | 2626 | .attrs = hswep_uncore_sbox_formats_attr, |
| 2627 | }; | 2627 | }; |
| @@ -3314,7 +3314,7 @@ static struct attribute *skx_uncore_cha_formats_attr[] = { | |||
| 3314 | NULL, | 3314 | NULL, |
| 3315 | }; | 3315 | }; |
| 3316 | 3316 | ||
| 3317 | static struct attribute_group skx_uncore_chabox_format_group = { | 3317 | static const struct attribute_group skx_uncore_chabox_format_group = { |
| 3318 | .name = "format", | 3318 | .name = "format", |
| 3319 | .attrs = skx_uncore_cha_formats_attr, | 3319 | .attrs = skx_uncore_cha_formats_attr, |
| 3320 | }; | 3320 | }; |
| @@ -3427,7 +3427,7 @@ static struct attribute *skx_uncore_iio_formats_attr[] = { | |||
| 3427 | NULL, | 3427 | NULL, |
| 3428 | }; | 3428 | }; |
| 3429 | 3429 | ||
| 3430 | static struct attribute_group skx_uncore_iio_format_group = { | 3430 | static const struct attribute_group skx_uncore_iio_format_group = { |
| 3431 | .name = "format", | 3431 | .name = "format", |
| 3432 | .attrs = skx_uncore_iio_formats_attr, | 3432 | .attrs = skx_uncore_iio_formats_attr, |
| 3433 | }; | 3433 | }; |
| @@ -3484,7 +3484,7 @@ static struct attribute *skx_uncore_formats_attr[] = { | |||
| 3484 | NULL, | 3484 | NULL, |
| 3485 | }; | 3485 | }; |
| 3486 | 3486 | ||
| 3487 | static struct attribute_group skx_uncore_format_group = { | 3487 | static const struct attribute_group skx_uncore_format_group = { |
| 3488 | .name = "format", | 3488 | .name = "format", |
| 3489 | .attrs = skx_uncore_formats_attr, | 3489 | .attrs = skx_uncore_formats_attr, |
| 3490 | }; | 3490 | }; |
| @@ -3605,7 +3605,7 @@ static struct attribute *skx_upi_uncore_formats_attr[] = { | |||
| 3605 | NULL, | 3605 | NULL, |
| 3606 | }; | 3606 | }; |
| 3607 | 3607 | ||
| 3608 | static struct attribute_group skx_upi_uncore_format_group = { | 3608 | static const struct attribute_group skx_upi_uncore_format_group = { |
| 3609 | .name = "format", | 3609 | .name = "format", |
| 3610 | .attrs = skx_upi_uncore_formats_attr, | 3610 | .attrs = skx_upi_uncore_formats_attr, |
| 3611 | }; | 3611 | }; |
diff --git a/arch/x86/kernel/cpu/mcheck/therm_throt.c b/arch/x86/kernel/cpu/mcheck/therm_throt.c index d7cc190ae457..f7370abd33c6 100644 --- a/arch/x86/kernel/cpu/mcheck/therm_throt.c +++ b/arch/x86/kernel/cpu/mcheck/therm_throt.c | |||
| @@ -122,7 +122,7 @@ static struct attribute *thermal_throttle_attrs[] = { | |||
| 122 | NULL | 122 | NULL |
| 123 | }; | 123 | }; |
| 124 | 124 | ||
| 125 | static struct attribute_group thermal_attr_group = { | 125 | static const struct attribute_group thermal_attr_group = { |
| 126 | .attrs = thermal_throttle_attrs, | 126 | .attrs = thermal_throttle_attrs, |
| 127 | .name = "thermal_throttle" | 127 | .name = "thermal_throttle" |
| 128 | }; | 128 | }; |
diff --git a/arch/x86/kernel/cpu/microcode/core.c b/arch/x86/kernel/cpu/microcode/core.c index 9cb98ee103db..86e8f0b2537b 100644 --- a/arch/x86/kernel/cpu/microcode/core.c +++ b/arch/x86/kernel/cpu/microcode/core.c | |||
| @@ -561,7 +561,7 @@ static struct attribute *mc_default_attrs[] = { | |||
| 561 | NULL | 561 | NULL |
| 562 | }; | 562 | }; |
| 563 | 563 | ||
| 564 | static struct attribute_group mc_attr_group = { | 564 | static const struct attribute_group mc_attr_group = { |
| 565 | .attrs = mc_default_attrs, | 565 | .attrs = mc_default_attrs, |
| 566 | .name = "microcode", | 566 | .name = "microcode", |
| 567 | }; | 567 | }; |
| @@ -707,7 +707,7 @@ static struct attribute *cpu_root_microcode_attrs[] = { | |||
| 707 | NULL | 707 | NULL |
| 708 | }; | 708 | }; |
| 709 | 709 | ||
| 710 | static struct attribute_group cpu_root_microcode_group = { | 710 | static const struct attribute_group cpu_root_microcode_group = { |
| 711 | .name = "microcode", | 711 | .name = "microcode", |
| 712 | .attrs = cpu_root_microcode_attrs, | 712 | .attrs = cpu_root_microcode_attrs, |
| 713 | }; | 713 | }; |
diff --git a/arch/x86/kernel/ksysfs.c b/arch/x86/kernel/ksysfs.c index 4afc67f5facc..06e1ff5562c0 100644 --- a/arch/x86/kernel/ksysfs.c +++ b/arch/x86/kernel/ksysfs.c | |||
| @@ -55,7 +55,7 @@ static struct bin_attribute *boot_params_data_attrs[] = { | |||
| 55 | NULL, | 55 | NULL, |
| 56 | }; | 56 | }; |
| 57 | 57 | ||
| 58 | static struct attribute_group boot_params_attr_group = { | 58 | static const struct attribute_group boot_params_attr_group = { |
| 59 | .attrs = boot_params_version_attrs, | 59 | .attrs = boot_params_version_attrs, |
| 60 | .bin_attrs = boot_params_data_attrs, | 60 | .bin_attrs = boot_params_data_attrs, |
| 61 | }; | 61 | }; |
| @@ -202,7 +202,7 @@ static struct bin_attribute *setup_data_data_attrs[] = { | |||
| 202 | NULL, | 202 | NULL, |
| 203 | }; | 203 | }; |
| 204 | 204 | ||
| 205 | static struct attribute_group setup_data_attr_group = { | 205 | static const struct attribute_group setup_data_attr_group = { |
| 206 | .attrs = setup_data_type_attrs, | 206 | .attrs = setup_data_type_attrs, |
| 207 | .bin_attrs = setup_data_data_attrs, | 207 | .bin_attrs = setup_data_data_attrs, |
| 208 | }; | 208 | }; |
