From: Fabian Krueger Date: Wed, 26 Jun 2019 07:35:25 +0000 (+0200) Subject: staging: kpc2000: introduce __func__ X-Git-Tag: v5.3-rc1~126^2~73 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=39e828584b390e612958e20ca308957001fcf854;p=linux-block.git staging: kpc2000: introduce __func__ Instead of using the function name hard coded as string, using __func__ and the '%s'-placeholder will always give the current name of the function. When renaming a function, the debugging-messages won't have to be rewritten. Signed-off-by: Fabian Krueger Signed-off-by: Michael Scheiderer Cc: Reviewed-by: Dan Carpenter Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/kpc2000/kpc2000_spi.c b/drivers/staging/kpc2000/kpc2000_spi.c index 8a6fb2bde94f..68b01e2420d8 100644 --- a/drivers/staging/kpc2000/kpc2000_spi.c +++ b/drivers/staging/kpc2000/kpc2000_spi.c @@ -439,13 +439,14 @@ kp_spi_probe(struct platform_device *pldev) drvdata = pldev->dev.platform_data; if (!drvdata) { - dev_err(&pldev->dev, "kp_spi_probe: platform_data is NULL!\n"); + dev_err(&pldev->dev, "%s: platform_data is NULL\n", __func__); return -ENODEV; } master = spi_alloc_master(&pldev->dev, sizeof(struct kp_spi)); if (master == NULL) { - dev_err(&pldev->dev, "kp_spi_probe: master allocation failed\n"); + dev_err(&pldev->dev, "%s: master allocation failed\n", + __func__); return -ENOMEM; } @@ -469,7 +470,8 @@ kp_spi_probe(struct platform_device *pldev) r = platform_get_resource(pldev, IORESOURCE_MEM, 0); if (r == NULL) { - dev_err(&pldev->dev, "kp_spi_probe: Unable to get platform resources\n"); + dev_err(&pldev->dev, "%s: Unable to get platform resources\n", + __func__); status = -ENODEV; goto free_master; }