linux-edac.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/7] EDAC: remove unused structure members
@ 2024-02-13 11:20 Jiri Slaby (SUSE)
  2024-02-13 11:20 ` [PATCH 1/7] EDAC/amd64: Remove amd64_pvt::ext_nbcfg Jiri Slaby (SUSE)
                   ` (8 more replies)
  0 siblings, 9 replies; 12+ messages in thread
From: Jiri Slaby (SUSE) @ 2024-02-13 11:20 UTC (permalink / raw)
  To: bp
  Cc: linux-kernel, Jiri Slaby (SUSE),
	Andre Przywara, Bjorn Andersson, Dinh Nguyen, Douglas Thompson,
	James Morse, Jan Luebbe, Johannes Thumshirn, Khuong Dinh,
	Konrad Dybcio, linux-edac, Manivannan Sadhasivam,
	Mauro Carvalho Chehab, Michal Simek, Palmer Dabbelt,
	Paul Walmsley, Ralf Baechle, Robert Richter,
	Sai Krishna Potthuri, Shubhrajyoti Datta, Tony Luck,
	Yazen Ghannam

Hi,

this series removes unused EDAC structure members as found by
clang-struct (and manually checked by me).

I admit I could not even compile-test octeon files, hopefully
kernel-test robot would catch mistakes in there.

Cc: Andre Przywara <andre.przywara@arm.com>
Cc: Bjorn Andersson <andersson@kernel.org>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Dinh Nguyen <dinguyen@kernel.org>
Cc: Douglas Thompson <dougthompson@xmission.com>
Cc: James Morse <james.morse@arm.com>
Cc: Jan Luebbe <jlu@pengutronix.de>
Cc: Johannes Thumshirn <morbidrsa@gmail.com>
Cc: Khuong Dinh <khuong@os.amperecomputing.com>
Cc: Konrad Dybcio <konrad.dybcio@linaro.org>
Cc: linux-edac@vger.kernel.org
Cc: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
Cc: Michal Simek <michal.simek@amd.com>
Cc: Palmer Dabbelt <palmer@dabbelt.com>
Cc: Paul Walmsley <paul.walmsley@sifive.com>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: Robert Richter <rric@kernel.org>
Cc: Sai Krishna Potthuri <sai.krishna.potthuri@amd.com>
Cc: Shubhrajyoti Datta <shubhrajyoti.datta@amd.com>
Cc: Tony Luck <tony.luck@intel.com>
Cc: Yazen Ghannam <yazen.ghannam@amd.com>

Jiri Slaby (SUSE) (7):
  EDAC/amd64: Remove amd64_pvt::ext_nbcfg
  EDAC/device: Remove edac_dev_sysfs_block_attribute::{block,value}
  EDAC/device: Remove edac_dev_sysfs_block_attribute::store()
  EDAC: Remove dynamic attributes from edac_device_alloc_ctl_info()
  EDAC: Remove edac_pci_ctl_info::edac_subsys
  EDAC: Remove edac_pci_ctl_info::complete
  EDAC: Remove edac_device_ctl_info::removal_complete

 drivers/edac/altera_edac.c       |  8 ++---
 drivers/edac/amd64_edac.h        |  1 -
 drivers/edac/amd8111_edac.c      |  3 +-
 drivers/edac/armada_xp_edac.c    |  2 +-
 drivers/edac/cpc925_edac.c       |  2 +-
 drivers/edac/edac_device.c       | 53 ++------------------------------
 drivers/edac/edac_device.h       | 22 ++-----------
 drivers/edac/edac_device_sysfs.c | 22 ++-----------
 drivers/edac/edac_pci.h          |  5 ---
 drivers/edac/highbank_l2_edac.c  |  2 +-
 drivers/edac/mpc85xx_edac.c      |  2 +-
 drivers/edac/octeon_edac-l2c.c   |  2 +-
 drivers/edac/octeon_edac-pc.c    |  2 +-
 drivers/edac/qcom_edac.c         |  1 -
 drivers/edac/sifive_edac.c       |  3 +-
 drivers/edac/thunderx_edac.c     |  6 ++--
 drivers/edac/xgene_edac.c        | 10 +++---
 drivers/edac/zynqmp_edac.c       |  2 +-
 18 files changed, 26 insertions(+), 122 deletions(-)

-- 
2.43.1


^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2024-03-27 17:40 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-02-13 11:20 [PATCH 0/7] EDAC: remove unused structure members Jiri Slaby (SUSE)
2024-02-13 11:20 ` [PATCH 1/7] EDAC/amd64: Remove amd64_pvt::ext_nbcfg Jiri Slaby (SUSE)
2024-02-14 20:23   ` Yazen Ghannam
2024-02-13 11:20 ` [PATCH 2/7] EDAC/device: Remove edac_dev_sysfs_block_attribute::{block,value} Jiri Slaby (SUSE)
2024-02-13 11:20 ` [PATCH 3/7] EDAC/device: Remove edac_dev_sysfs_block_attribute::store() Jiri Slaby (SUSE)
2024-02-13 11:20 ` [PATCH 4/7] EDAC: Remove dynamic attributes from edac_device_alloc_ctl_info() Jiri Slaby (SUSE)
2024-02-13 11:20 ` [PATCH 5/7] EDAC: Remove edac_pci_ctl_info::edac_subsys Jiri Slaby (SUSE)
2024-02-13 11:20 ` [PATCH 6/7] EDAC: Remove edac_pci_ctl_info::complete Jiri Slaby (SUSE)
2024-02-13 11:20 ` [PATCH 7/7] EDAC: Remove edac_device_ctl_info::removal_complete Jiri Slaby (SUSE)
2024-03-08  9:01 ` [PATCH 0/7] EDAC: remove unused structure members Jiri Slaby
2024-03-08  9:16   ` Borislav Petkov
2024-03-27 17:32 ` Borislav Petkov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).