summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominik Sliwa <dominik.sliwa@toradex.com>2018-03-27 15:36:14 +0200
committerMarcel Ziswiler <marcel.ziswiler@toradex.com>2018-03-28 18:39:18 +0200
commitb3d86431aaec95983cd3cbc70fa687d6f27dc94b (patch)
treefd21459ca4ede21546af6538a91b40eda4e2258f
parent65b977622197233026ff5e989587cfd43368e2bb (diff)
Revert "backlight: pwm: Converting benign message to info"
This reverts commit 153a5d54d1a10c5a35f6923e0c6423430d2c7c89.
-rw-r--r--drivers/video/backlight/pwm_bl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/backlight/pwm_bl.c b/drivers/video/backlight/pwm_bl.c
index 0f73b0f84c85..29b55621b5f4 100644
--- a/drivers/video/backlight/pwm_bl.c
+++ b/drivers/video/backlight/pwm_bl.c
@@ -1,7 +1,7 @@
/*
* linux/drivers/video/backlight/pwm_bl.c
*
- * Copyright (c) 2013-2015, NVIDIA CORPORATION, All rights reserved.
+ * Copyright (c) 2013, NVIDIA CORPORATION, All rights reserved.
*
* This software is licensed under the terms of the GNU General Public
* License version 2, as published by the Free Software Foundation, and
@@ -233,7 +233,7 @@ static int pwm_backlight_probe(struct platform_device *pdev)
pb->pwm = devm_pwm_get(&pdev->dev, NULL);
if (IS_ERR(pb->pwm)) {
- dev_info(&pdev->dev, "unable to request PWM, trying legacy API\n");
+ dev_err(&pdev->dev, "unable to request PWM, trying legacy API\n");
pb->pwm = pwm_request(data->pwm_id, "pwm-backlight");
if (IS_ERR(pb->pwm)) {