diff options
author | Stewart Smith <stewart@linux.vnet.ibm.com> | 2014-10-03 15:10:27 +1000 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2014-10-08 13:56:28 +1100 |
commit | af27fa769dedfa92540537efdec532a343a09ac7 (patch) | |
tree | bd24028a45fb00c129c20d013aba181d97311af0 /platforms | |
parent | 1712d88806859fd46d06118c6450f0a66812c91b (diff) | |
download | skiboot-af27fa769dedfa92540537efdec532a343a09ac7.zip skiboot-af27fa769dedfa92540537efdec532a343a09ac7.tar.gz skiboot-af27fa769dedfa92540537efdec532a343a09ac7.tar.bz2 |
Change DBG macro to prlog calls for platforms/ibm-fsp/lxvpd.c
No functional changes, when running with higher log level, you'll
get debug messages without recompiling!
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'platforms')
-rw-r--r-- | platforms/ibm-fsp/lxvpd.c | 41 |
1 files changed, 23 insertions, 18 deletions
diff --git a/platforms/ibm-fsp/lxvpd.c b/platforms/ibm-fsp/lxvpd.c index bcf8118..43a1c5e 100644 --- a/platforms/ibm-fsp/lxvpd.c +++ b/platforms/ibm-fsp/lxvpd.c @@ -27,9 +27,6 @@ #include "lxvpd.h" -#define DBG(fmt...) do { } while(0) -//#define DBG(fmt...) printf(fmt) - /* * XXX TODO: Add 1006 maps to add function loc codes and loc code maps * (ie. -Tn part of the location code) @@ -84,7 +81,7 @@ void lxvpd_get_slot_info(struct phb *phb, struct pci_device * pd) if (!sdata) return; - DBG("LXVPD: Get Slot Info PHB%d pd=%x\n", phb->opal_id, + prlog(PR_TRACE, "LXVPD: Get Slot Info PHB%d pd=%x\n", phb->opal_id, pd ? pd->bdfn : 0); /* @@ -94,7 +91,7 @@ void lxvpd_get_slot_info(struct phb *phb, struct pci_device * pd) * bridge. */ if (!lxvpd_supported_slot(phb, pd)) { - DBG("LXVPD: Unsupported slot\n"); + prlog(PR_TRACE, "LXVPD: Unsupported slot\n"); return; } @@ -118,16 +115,24 @@ void lxvpd_get_slot_info(struct phb *phb, struct pci_device * pd) if (entry_found) { pd->slot_info = &sdata->info[idx]; - DBG("PCI: PCIE Slot Info: \n"); - DBG(" Label %s\n", pd->slot_info->label); - DBG(" Pluggable 0x%x\n", pd->slot_info->pluggable?1:0); - DBG(" Power Ctl 0x%x\n", pd->slot_info->power_ctl?1:0); - DBG(" Wired Lanes 0x%x\n", pd->slot_info->wired_lanes); - DBG(" Bus Clock 0x%x\n", pd->slot_info->bus_clock); - DBG(" Connector 0x%x\n", pd->slot_info->connector_type); - DBG(" Slot Index %d\n", pd->slot_info->slot_index); - } else - DBG("PCI: PCIE Slot Info Not Found\n"); + prlog(PR_TRACE, "PCI: PCIE Slot Info: \n" + " Label %s\n" + " Pluggable 0x%x\n" + " Power Ctl 0x%x\n" + " Wired Lanes 0x%x\n" + " Bus Clock 0x%x\n" + " Connector 0x%x\n" + " Slot Index %d\n", + pd->slot_info->label, + pd->slot_info->pluggable?1:0, + pd->slot_info->power_ctl?1:0, + pd->slot_info->wired_lanes, + pd->slot_info->bus_clock, + pd->slot_info->connector_type, + pd->slot_info->slot_index); + } else { + prlog(PR_TRACE, "PCI: PCIE Slot Info Not Found\n"); + } } static struct pci_slot_info *lxvpd_alloc_slot_info(struct phb *phb, int count) @@ -262,8 +267,8 @@ void lxvpd_process_slot_entries(struct phb *phb, } pr_end = pr_rec + pr_size; - DBG("LXVPD: %s record for PHB%d is %ld bytes\n", - record, phb->opal_id, pr_size); + prlog(PR_TRACE, "LXVPD: %s record for PHB%d is %ld bytes\n", + record, phb->opal_id, pr_size); /* As long as there's still something in the PRxy record... */ while(pr_rec < pr_end) { @@ -279,7 +284,7 @@ void lxvpd_process_slot_entries(struct phb *phb, record); return; } - DBG("LXVPD: Found 0x%04x map...\n", *mf); + prlog(PR_TRACE, "LXVPD: Found 0x%04x map...\n", *mf); switch (*mf) { case 0x1004: |