edac: Convert debugfX to edac_dbg(X,
Use a more common debugging style. Remove __FILE__ uses, add missing newlines, coalesce formats and align arguments. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:

committed by
Mauro Carvalho Chehab

parent
7e881856ee
commit
956b9ba156
@@ -45,7 +45,7 @@ struct edac_pci_ctl_info *edac_pci_alloc_ctl_info(unsigned int sz_pvt,
|
||||
void *p = NULL, *pvt;
|
||||
unsigned int size;
|
||||
|
||||
debugf1("\n");
|
||||
edac_dbg(1, "\n");
|
||||
|
||||
pci = edac_align_ptr(&p, sizeof(*pci), 1);
|
||||
pvt = edac_align_ptr(&p, 1, sz_pvt);
|
||||
@@ -80,7 +80,7 @@ EXPORT_SYMBOL_GPL(edac_pci_alloc_ctl_info);
|
||||
*/
|
||||
void edac_pci_free_ctl_info(struct edac_pci_ctl_info *pci)
|
||||
{
|
||||
debugf1("\n");
|
||||
edac_dbg(1, "\n");
|
||||
|
||||
edac_pci_remove_sysfs(pci);
|
||||
}
|
||||
@@ -97,7 +97,7 @@ static struct edac_pci_ctl_info *find_edac_pci_by_dev(struct device *dev)
|
||||
struct edac_pci_ctl_info *pci;
|
||||
struct list_head *item;
|
||||
|
||||
debugf1("\n");
|
||||
edac_dbg(1, "\n");
|
||||
|
||||
list_for_each(item, &edac_pci_list) {
|
||||
pci = list_entry(item, struct edac_pci_ctl_info, link);
|
||||
@@ -122,7 +122,7 @@ static int add_edac_pci_to_global_list(struct edac_pci_ctl_info *pci)
|
||||
struct list_head *item, *insert_before;
|
||||
struct edac_pci_ctl_info *rover;
|
||||
|
||||
debugf1("\n");
|
||||
edac_dbg(1, "\n");
|
||||
|
||||
insert_before = &edac_pci_list;
|
||||
|
||||
@@ -226,7 +226,7 @@ static void edac_pci_workq_function(struct work_struct *work_req)
|
||||
int msec;
|
||||
unsigned long delay;
|
||||
|
||||
debugf3("checking\n");
|
||||
edac_dbg(3, "checking\n");
|
||||
|
||||
mutex_lock(&edac_pci_ctls_mutex);
|
||||
|
||||
@@ -261,7 +261,7 @@ static void edac_pci_workq_function(struct work_struct *work_req)
|
||||
static void edac_pci_workq_setup(struct edac_pci_ctl_info *pci,
|
||||
unsigned int msec)
|
||||
{
|
||||
debugf0("\n");
|
||||
edac_dbg(0, "\n");
|
||||
|
||||
INIT_DELAYED_WORK(&pci->work, edac_pci_workq_function);
|
||||
queue_delayed_work(edac_workqueue, &pci->work,
|
||||
@@ -276,7 +276,7 @@ static void edac_pci_workq_teardown(struct edac_pci_ctl_info *pci)
|
||||
{
|
||||
int status;
|
||||
|
||||
debugf0("\n");
|
||||
edac_dbg(0, "\n");
|
||||
|
||||
status = cancel_delayed_work(&pci->work);
|
||||
if (status == 0)
|
||||
@@ -293,7 +293,7 @@ static void edac_pci_workq_teardown(struct edac_pci_ctl_info *pci)
|
||||
void edac_pci_reset_delay_period(struct edac_pci_ctl_info *pci,
|
||||
unsigned long value)
|
||||
{
|
||||
debugf0("\n");
|
||||
edac_dbg(0, "\n");
|
||||
|
||||
edac_pci_workq_teardown(pci);
|
||||
|
||||
@@ -333,7 +333,7 @@ EXPORT_SYMBOL_GPL(edac_pci_alloc_index);
|
||||
*/
|
||||
int edac_pci_add_device(struct edac_pci_ctl_info *pci, int edac_idx)
|
||||
{
|
||||
debugf0("\n");
|
||||
edac_dbg(0, "\n");
|
||||
|
||||
pci->pci_idx = edac_idx;
|
||||
pci->start_time = jiffies;
|
||||
@@ -393,7 +393,7 @@ struct edac_pci_ctl_info *edac_pci_del_device(struct device *dev)
|
||||
{
|
||||
struct edac_pci_ctl_info *pci;
|
||||
|
||||
debugf0("\n");
|
||||
edac_dbg(0, "\n");
|
||||
|
||||
mutex_lock(&edac_pci_ctls_mutex);
|
||||
|
||||
@@ -430,7 +430,7 @@ EXPORT_SYMBOL_GPL(edac_pci_del_device);
|
||||
*/
|
||||
static void edac_pci_generic_check(struct edac_pci_ctl_info *pci)
|
||||
{
|
||||
debugf4("\n");
|
||||
edac_dbg(4, "\n");
|
||||
edac_pci_do_parity_check();
|
||||
}
|
||||
|
||||
@@ -475,7 +475,7 @@ struct edac_pci_ctl_info *edac_pci_create_generic_ctl(struct device *dev,
|
||||
pdata->edac_idx = edac_pci_idx++;
|
||||
|
||||
if (edac_pci_add_device(pci, pdata->edac_idx) > 0) {
|
||||
debugf3("failed edac_pci_add_device()\n");
|
||||
edac_dbg(3, "failed edac_pci_add_device()\n");
|
||||
edac_pci_free_ctl_info(pci);
|
||||
return NULL;
|
||||
}
|
||||
@@ -491,7 +491,7 @@ EXPORT_SYMBOL_GPL(edac_pci_create_generic_ctl);
|
||||
*/
|
||||
void edac_pci_release_generic_ctl(struct edac_pci_ctl_info *pci)
|
||||
{
|
||||
debugf0("pci mod=%s\n", pci->mod_name);
|
||||
edac_dbg(0, "pci mod=%s\n", pci->mod_name);
|
||||
|
||||
edac_pci_del_device(pci->dev);
|
||||
edac_pci_free_ctl_info(pci);
|
||||
|
Reference in New Issue
Block a user