[Skiboot] [PATCH] hw/phb4: Fix unused value/parameter warnings

Andrew Donnellan andrew.donnellan at au1.ibm.com
Tue Jul 24 19:36:41 AEST 2018


Remove the phb4.c-specific CFLAGS that disable the unused value and unused
parameter warnings, and cleanup the ensuing warnings.

Signed-off-by: Andrew Donnellan <andrew.donnellan at au1.ibm.com>
---
 hw/Makefile.inc |  3 ---
 hw/phb4.c       | 47 +++++++++++++++++++++++++++--------------------
 2 files changed, 27 insertions(+), 23 deletions(-)

diff --git a/hw/Makefile.inc b/hw/Makefile.inc
index 4dec98670426..005772a5f5d2 100644
--- a/hw/Makefile.inc
+++ b/hw/Makefile.inc
@@ -12,9 +12,6 @@ HW_OBJS += npu2-common.o npu2-opencapi.o phys-map.o sbe-p9.o capp.o occ-sensor.o
 HW_OBJS += vas.o sbe-p8.o
 HW=hw/built-in.a
 
-# FIXME hack this for now
-CFLAGS_hw/phb4.o = -Wno-unused-value -Wno-unused-parameter
-
 include $(SRC)/hw/fsp/Makefile.inc
 include $(SRC)/hw/ec/Makefile.inc
 include $(SRC)/hw/ast-bmc/Makefile.inc
diff --git a/hw/phb4.c b/hw/phb4.c
index f2b92409d1a9..1c1a719ee7b2 100644
--- a/hw/phb4.c
+++ b/hw/phb4.c
@@ -128,7 +128,7 @@
 /* Enable this to disable error interrupts for debug purposes */
 #define DISABLE_ERR_INTS
 
-static void phb4_init_hw(struct phb4 *p, bool first_init);
+static void phb4_init_hw(struct phb4 *p);
 
 #define PHBDBG(p, fmt, a...)	prlog(PR_DEBUG, "PHB#%04x[%d:%d]: " fmt, \
 				      (p)->phb.opal_id, (p)->chip_id, \
@@ -800,10 +800,10 @@ static void phb4_endpoint_init(struct phb *phb,
 	pci_cfg_write32(phb, bdfn, aercap + PCIECAP_AER_CAPCTL, val32);
 }
 
-static int64_t phb4_pcicfg_no_dstate(void *dev,
+static int64_t phb4_pcicfg_no_dstate(void *dev __unused,
 				     struct pci_cfg_reg_filter *pcrf,
-				     uint32_t offset, uint32_t len,
-				     uint32_t *data,  bool write)
+				     uint32_t offset, uint32_t len __unused,
+				     uint32_t *data __unused,  bool write)
 {
 	uint32_t loff = offset - pcrf->start;
 
@@ -816,7 +816,7 @@ static int64_t phb4_pcicfg_no_dstate(void *dev,
 	return OPAL_PARTIAL;
 }
 
-static void phb4_check_device_quirks(struct phb *phb, struct pci_device *dev)
+static void phb4_check_device_quirks(struct pci_device *dev)
 {
 	/* Some special adapter tweaks for devices directly under the PHB */
 	if (dev->primary_bus != 1)
@@ -838,7 +838,7 @@ static int phb4_device_init(struct phb *phb, struct pci_device *dev,
 	int ecap, aercap;
 
 	/* Setup special device quirks */
-	phb4_check_device_quirks(phb, dev);
+	phb4_check_device_quirks(dev);
 
 	/* Common initialization for the device */
 	pci_device_init(phb, dev);
@@ -1209,7 +1209,7 @@ static int64_t phb4_set_phb_mem_window(struct phb *phb,
 				       uint16_t window_type,
 				       uint16_t window_num,
 				       uint64_t addr,
-				       uint64_t pci_addr,
+				       uint64_t pci_addr __unused,
 				       uint64_t size)
 {
 	struct phb4 *p = phb_to_phb4(phb);
@@ -3043,7 +3043,7 @@ static int64_t phb4_creset(struct pci_slot *slot)
 		p->flags &= ~PHB4_AIB_FENCED;
 		p->flags &= ~PHB4_CAPP_RECOVERY;
 		p->flags &= ~PHB4_CFG_USE_ASB;
-		phb4_init_hw(p, false);
+		phb4_init_hw(p);
 		pci_slot_set_state(slot, PHB4_SLOT_CRESET_FRESET);
 		return pci_slot_set_sm_timeout(slot, msecs_to_tb(100));
 	case PHB4_SLOT_CRESET_FRESET:
@@ -3444,16 +3444,20 @@ static int64_t phb4_err_inject_finalize(struct phb4 *phb, uint64_t addr,
 	return OPAL_SUCCESS;
 }
 
-static int64_t phb4_err_inject_mem32(struct phb4 *phb, uint64_t pe_number,
-				     uint64_t addr, uint64_t mask,
-				     bool is_write)
+static int64_t phb4_err_inject_mem32(struct phb4 *phb __unused,
+				     uint64_t pe_number __unused,
+				     uint64_t addr __unused,
+				     uint64_t mask __unused,
+				     bool is_write __unused)
 {
 	return OPAL_UNSUPPORTED;
 }
 
-static int64_t phb4_err_inject_mem64(struct phb4 *phb, uint64_t pe_number,
-				     uint64_t addr, uint64_t mask,
-				     bool is_write)
+static int64_t phb4_err_inject_mem64(struct phb4 *phb __unused,
+				     uint64_t pe_number __unused,
+				     uint64_t addr __unused,
+				     uint64_t mask __unused,
+				     bool is_write __unused)
 {
 	return OPAL_UNSUPPORTED;
 }
@@ -3519,9 +3523,12 @@ static int64_t phb4_err_inject_cfg(struct phb4 *phb, uint64_t pe_number,
 	return phb4_err_inject_finalize(phb, a, m, ctrl, is_write);
 }
 
-static int64_t phb4_err_inject_dma(struct phb4 *phb, uint64_t pe_number,
-				   uint64_t addr, uint64_t mask,
-				   bool is_write, bool is_64bits)
+static int64_t phb4_err_inject_dma(struct phb4 *phb __unused,
+				   uint64_t pe_number __unused,
+				   uint64_t addr __unused,
+				   uint64_t mask __unused,
+				   bool is_write __unused,
+				   bool is_64bits __unused)
 {
 	return OPAL_UNSUPPORTED;
 }
@@ -4655,7 +4662,7 @@ static bool phb4_wait_dlp_reset(struct phb4 *p)
 	}
 	return true;
 }
-static void phb4_init_hw(struct phb4 *p, bool first_init)
+static void phb4_init_hw(struct phb4 *p)
 {
 	uint64_t val, creset;
 
@@ -5105,7 +5112,7 @@ static uint64_t phb4_lsi_attributes(struct irq_source *is __unused,
 }
 
 static int64_t phb4_ndd1_lsi_set_xive(struct irq_source *is, uint32_t isn,
-				     uint16_t server, uint8_t priority)
+				     uint16_t server __unused, uint8_t priority)
 {
 	struct phb4 *p = is->data;
 	uint32_t idx = isn - p->base_lsi;
@@ -5326,7 +5333,7 @@ static void phb4_create(struct dt_node *np)
 	phb4_init_ioda_cache(p);
 
 	/* Get the HW up and running */
-	phb4_init_hw(p, true);
+	phb4_init_hw(p);
 
 	/* Load capp microcode into capp unit */
 	load_capp_ucode(p);
-- 
2.11.0



More information about the Skiboot mailing list