Am Mittwoch, den 05.12.2018, 23:31 -0800 schrieb Andrey Smirnov: > Make error messages more consistent by making sure each starts with > "%pOF:". > > > Cc: Thomas Gleixner <[email protected]> > > Cc: Jason Cooper <[email protected]> > > Cc: Marc Zyngier <[email protected]> > Cc: [email protected] > Cc: [email protected] > > Cc: Leonard Crestez <[email protected]> > > Cc: "A.s. Dong" <[email protected]> > > Cc: Richard Zhu <[email protected]> > Cc: [email protected] > Cc: [email protected] > Cc: [email protected] > Signed-off-by: Andrey Smirnov <[email protected]>
Reviewed-by: Lucas Stach <[email protected]> > --- > drivers/irqchip/irq-imx-gpcv2.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/irqchip/irq-imx-gpcv2.c b/drivers/irqchip/irq-imx-gpcv2.c > index 077d56b3183a..c2b2b3128ddd 100644 > --- a/drivers/irqchip/irq-imx-gpcv2.c > +++ b/drivers/irqchip/irq-imx-gpcv2.c > @@ -212,7 +212,7 @@ static int __init imx_gpcv2_irqchip_init(struct > device_node *node, > > > cd = kzalloc(sizeof(struct gpcv2_irqchip_data), GFP_KERNEL); > > if (!cd) { > > - pr_err("kzalloc failed!\n"); > > + pr_err("%pOF: kzalloc failed!\n", node); > > return -ENOMEM; > > } > > @@ -220,7 +220,7 @@ static int __init imx_gpcv2_irqchip_init(struct > device_node *node, > > > cd->gpc_base = of_iomap(node, 0); > > if (!cd->gpc_base) { > > - pr_err("fsl-gpcv2: unable to map gpc registers\n"); > > + pr_err("%pOF: unable to map gpc registers\n", node); > > kfree(cd); > > return -ENOMEM; > > }

