Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp:
EDAC: Fix typos in Documentation/edac.txt
EDAC, MCE: Fix edac_init_mce_inject error handling
EDAC: Remove deprecated kbuild goal definitions

+9 -9
+4 -4
Documentation/edac.txt
··· 196 196 The representation of the above is reflected in the directory tree 197 197 in EDAC's sysfs interface. Starting in directory 198 198 /sys/devices/system/edac/mc each memory controller will be represented 199 - by its own 'mcX' directory, where 'X" is the index of the MC. 199 + by its own 'mcX' directory, where 'X' is the index of the MC. 200 200 201 201 202 202 ..../edac/mc/ ··· 207 207 .... 208 208 209 209 Under each 'mcX' directory each 'csrowX' is again represented by a 210 - 'csrowX', where 'X" is the csrow index: 210 + 'csrowX', where 'X' is the csrow index: 211 211 212 212 213 213 .../mc/mc0/ ··· 232 232 233 233 234 234 In 'mcX' directories are EDAC control and attribute files for 235 - this 'X" instance of the memory controllers: 235 + this 'X' instance of the memory controllers: 236 236 237 237 238 238 Counter reset control file: ··· 343 343 'csrowX' DIRECTORIES 344 344 345 345 In the 'csrowX' directories are EDAC control and attribute files for 346 - this 'X" instance of csrow: 346 + this 'X' instance of csrow: 347 347 348 348 349 349 Total Uncorrectable Errors count attribute file:
+4 -4
drivers/edac/Makefile
··· 10 10 obj-$(CONFIG_EDAC_MM_EDAC) += edac_core.o 11 11 obj-$(CONFIG_EDAC_MCE) += edac_mce.o 12 12 13 - edac_core-objs := edac_mc.o edac_device.o edac_mc_sysfs.o edac_pci_sysfs.o 14 - edac_core-objs += edac_module.o edac_device_sysfs.o 13 + edac_core-y := edac_mc.o edac_device.o edac_mc_sysfs.o edac_pci_sysfs.o 14 + edac_core-y += edac_module.o edac_device_sysfs.o 15 15 16 16 ifdef CONFIG_PCI 17 - edac_core-objs += edac_pci.o edac_pci_sysfs.o 17 + edac_core-y += edac_pci.o edac_pci_sysfs.o 18 18 endif 19 19 20 20 obj-$(CONFIG_EDAC_MCE_INJ) += mce_amd_inj.o 21 21 22 - edac_mce_amd-objs := mce_amd.o 22 + edac_mce_amd-y := mce_amd.o 23 23 obj-$(CONFIG_EDAC_DECODE_MCE) += edac_mce_amd.o 24 24 25 25 obj-$(CONFIG_EDAC_AMD76X) += amd76x_edac.o
+1 -1
drivers/edac/mce_amd_inj.c
··· 139 139 return 0; 140 140 141 141 err_sysfs_create: 142 - while (i-- >= 0) 142 + while (--i >= 0) 143 143 sysfs_remove_file(mce_kobj, &sysfs_attrs[i]->attr); 144 144 145 145 kobject_del(mce_kobj);