All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tony Prisk <linux@prisktech.co.nz>
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 5/6] video: vt8500: Adjust contrast in wm8505 framebuffer driver.
Date: Wed, 27 Mar 2013 08:47:00 +0000	[thread overview]
Message-ID: <1364374021-10844-6-git-send-email-linux@prisktech.co.nz> (raw)
In-Reply-To: <1364374021-10844-1-git-send-email-linux@prisktech.co.nz>

The contrast value was typo'd on the original commit (0x80 instead of
0x08). Following feedback from an enduser, a value of 0x10 seems more
suitable due to the default backlight being <100%.

Signed-off-by: Tony Prisk <linux@prisktech.co.nz>
---
 drivers/video/wm8505fb.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/video/wm8505fb.c b/drivers/video/wm8505fb.c
index b94ebc9..5057457 100644
--- a/drivers/video/wm8505fb.c
+++ b/drivers/video/wm8505fb.c
@@ -373,7 +373,7 @@ static int wm8505fb_probe(struct platform_device *pdev)
 	fbi->fb.screen_base		= fb_mem_virt;
 	fbi->fb.screen_size		= fb_mem_len;
 
-	fbi->contrast = 0x80;
+	fbi->contrast = 0x10;
 	ret = wm8505fb_set_par(&fbi->fb);
 	if (ret) {
 		dev_err(&pdev->dev, "Failed to set parameters\n");
-- 
1.7.9.5


WARNING: multiple messages have this Message-ID (diff)
From: linux@prisktech.co.nz (Tony Prisk)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 5/6] video: vt8500: Adjust contrast in wm8505 framebuffer driver.
Date: Wed, 27 Mar 2013 21:47:00 +1300	[thread overview]
Message-ID: <1364374021-10844-6-git-send-email-linux@prisktech.co.nz> (raw)
In-Reply-To: <1364374021-10844-1-git-send-email-linux@prisktech.co.nz>

The contrast value was typo'd on the original commit (0x80 instead of
0x08). Following feedback from an enduser, a value of 0x10 seems more
suitable due to the default backlight being <100%.

Signed-off-by: Tony Prisk <linux@prisktech.co.nz>
---
 drivers/video/wm8505fb.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/video/wm8505fb.c b/drivers/video/wm8505fb.c
index b94ebc9..5057457 100644
--- a/drivers/video/wm8505fb.c
+++ b/drivers/video/wm8505fb.c
@@ -373,7 +373,7 @@ static int wm8505fb_probe(struct platform_device *pdev)
 	fbi->fb.screen_base		= fb_mem_virt;
 	fbi->fb.screen_size		= fb_mem_len;
 
-	fbi->contrast = 0x80;
+	fbi->contrast = 0x10;
 	ret = wm8505fb_set_par(&fbi->fb);
 	if (ret) {
 		dev_err(&pdev->dev, "Failed to set parameters\n");
-- 
1.7.9.5

WARNING: multiple messages have this Message-ID (diff)
From: Tony Prisk <linux@prisktech.co.nz>
To: Tomi Valkeinen <tomi.valkeinen@ti.com>
Cc: linux-fbdev@vger.kernel.org, florianschandinat@gmx.de,
	vt8500-wm8505-linux-kernel@googlegroups.com,
	linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org, Tony Prisk <linux@prisktech.co.nz>
Subject: [PATCH 5/6] video: vt8500: Adjust contrast in wm8505 framebuffer driver.
Date: Wed, 27 Mar 2013 21:47:00 +1300	[thread overview]
Message-ID: <1364374021-10844-6-git-send-email-linux@prisktech.co.nz> (raw)
In-Reply-To: <1364374021-10844-1-git-send-email-linux@prisktech.co.nz>

The contrast value was typo'd on the original commit (0x80 instead of
0x08). Following feedback from an enduser, a value of 0x10 seems more
suitable due to the default backlight being <100%.

Signed-off-by: Tony Prisk <linux@prisktech.co.nz>
---
 drivers/video/wm8505fb.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/video/wm8505fb.c b/drivers/video/wm8505fb.c
index b94ebc9..5057457 100644
--- a/drivers/video/wm8505fb.c
+++ b/drivers/video/wm8505fb.c
@@ -373,7 +373,7 @@ static int wm8505fb_probe(struct platform_device *pdev)
 	fbi->fb.screen_base		= fb_mem_virt;
 	fbi->fb.screen_size		= fb_mem_len;
 
-	fbi->contrast = 0x80;
+	fbi->contrast = 0x10;
 	ret = wm8505fb_set_par(&fbi->fb);
 	if (ret) {
 		dev_err(&pdev->dev, "Failed to set parameters\n");
-- 
1.7.9.5


  parent reply	other threads:[~2013-03-27  8:47 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-03-27  8:46 [PATCH 0/6] fb: vt8500: patches for 3.10 Tony Prisk
2013-03-27  8:46 ` Tony Prisk
2013-03-27  8:46 ` Tony Prisk
2013-03-27  8:46 ` [PATCH 1/6] video: vt8500: Make wmt_ge_rops optional Tony Prisk
2013-03-27  8:46   ` Tony Prisk
2013-03-27  8:46   ` Tony Prisk
2013-03-27  8:46 ` [PATCH 2/6] video: vt8500: Remove unused platform_data/video-vt8500lcdfb.h Tony Prisk
2013-03-27  8:46   ` Tony Prisk
2013-03-27  8:46   ` Tony Prisk
2013-03-27  8:46 ` [PATCH 3/6] video: vt8500: Correct descriptions in video/Kconfig Tony Prisk
2013-03-27  8:46   ` Tony Prisk
2013-03-27  8:46   ` Tony Prisk
2013-03-27  8:46 ` [PATCH 4/6] drivers/video/wm8505fb.c: use devm_ functions Tony Prisk
2013-03-27  8:46   ` Tony Prisk
2013-03-27  8:46   ` Tony Prisk
2013-03-27  8:47 ` Tony Prisk [this message]
2013-03-27  8:47   ` [PATCH 5/6] video: vt8500: Adjust contrast in wm8505 framebuffer driver Tony Prisk
2013-03-27  8:47   ` Tony Prisk
2013-03-27  8:47 ` [PATCH 6/6] video: fb: vt8500: Convert framebuffer drivers to standardized binding Tony Prisk
2013-03-27  8:47   ` Tony Prisk
2013-03-27  8:47   ` Tony Prisk
2013-03-27 11:10   ` Tomi Valkeinen
2013-03-27 11:10     ` Tomi Valkeinen
2013-03-27 11:10     ` Tomi Valkeinen
2013-03-28  5:04     ` Tony Prisk
2013-03-28  5:04       ` Tony Prisk
2013-03-28  5:04       ` Tony Prisk

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1364374021-10844-6-git-send-email-linux@prisktech.co.nz \
    --to=linux@prisktech.co.nz \
    --cc=linux-arm-kernel@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.