[Armadeus-commitlog] armadeus branch, master, updated. armadeus-5.3-69-g6c02e49
Brought to you by:
sszy
|
From: jorasse <jo...@us...> - 2014-01-23 22:42:19
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "armadeus".
The branch, master has been updated
via 6c02e499aa0add4bb96e131c1fd0f71c0d0b6061 (commit)
from 8321e057df9718006fb37eb5451757005e06b146 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 6c02e499aa0add4bb96e131c1fd0f71c0d0b6061
Author: Eric Jarrige <eri...@ar...>
Date: Thu Jan 23 23:42:09 2014 +0100
[LINUX] 3.13: apf27: remove obsolet patch - not used with Open Firmware / DT
-----------------------------------------------------------------------
Summary of changes:
...rmadeus-mx27-imxfb-fix_pwm_contrast_issue.patch | 65 --------------------
1 files changed, 0 insertions(+), 65 deletions(-)
delete mode 100644 patches/linux/3.13/0204-armadeus-mx27-imxfb-fix_pwm_contrast_issue.patch
diff --git a/patches/linux/3.13/0204-armadeus-mx27-imxfb-fix_pwm_contrast_issue.patch b/patches/linux/3.13/0204-armadeus-mx27-imxfb-fix_pwm_contrast_issue.patch
deleted file mode 100644
index 1172852..0000000
--- a/patches/linux/3.13/0204-armadeus-mx27-imxfb-fix_pwm_contrast_issue.patch
+++ /dev/null
@@ -1,65 +0,0 @@
-From 1dcc1e25e2f0fd1eb9daf54385485d802aaa370d Mon Sep 17 00:00:00 2001
-From: Philippe Reynes <tr...@ya...>
-Date: Mon, 15 Jul 2013 12:31:14 +0200
-Subject: [PATCH] Pin contrast level is always high when LPCR PCD is equal to
- 0. By setting per3clk_div to have a 134 MHz clock, PCD is
- greater than 0 and the PWM is working.
-
-Signed-off-by: Gwenhael Goavec-Merou <gwe...@ar...>
----
- drivers/video/imxfb.c | 10 ++++++++++
- 1 files changed, 10 insertions(+), 0 deletions(-)
-
-Index: linux-3.11-rc3/drivers/video/imxfb.c
-===================================================================
---- linux-3.11-rc3.orig/drivers/video/imxfb.c
-+++ linux-3.11-rc3/drivers/video/imxfb.c
-@@ -137,6 +137,7 @@ struct imxfb_rgb {
- enum imxfb_type {
- IMX1_FB,
- IMX21_FB,
-+ IMX27_FB,
- };
-
- struct imxfb_info {
-@@ -189,6 +190,9 @@ static struct platform_device_id imxfb_d
- .name = "imx21-fb",
- .driver_data = IMX21_FB,
- }, {
-+ .name = "imx27-fb",
-+ .driver_data = IMX27_FB,
-+ }, {
- /* sentinel */
- }
- };
-@@ -202,6 +206,9 @@ static struct of_device_id imxfb_of_dev_
- .compatible = "fsl,imx21-fb",
- .data = &imxfb_devtype[IMX21_FB],
- }, {
-+ .compatible = "fsl,imx27-fb",
-+ .data = &imxfb_devtype[IMX27_FB],
-+ }, {
- /* sentinel */
- }
- };
-@@ -866,6 +873,7 @@ static int imxfb_probe(struct platform_d
- const struct of_device_id *of_id;
- int ret, i;
- int bytes_per_pixel;
-+ unsigned long per3clk;
-
- dev_info(&pdev->dev, "i.MX Framebuffer driver\n");
-
-@@ -959,6 +967,12 @@ static int imxfb_probe(struct platform_d
- goto failed_getclock;
- }
-
-+ if (fbi->devtype == IMX27_FB) {
-+ per3clk = clk_round_rate(fbi->clk_per, 134000000);
-+ if (clk_set_rate(fbi->clk_per, per3clk))
-+ pr_debug("mx2fb: Unable to set clock to %lu\n", per3clk);
-+ }
-+
- fbi->regs = ioremap(res->start, resource_size(res));
- if (fbi->regs == NULL) {
- dev_err(&pdev->dev, "Cannot map frame buffer registers\n");
hooks/post-receive
--
armadeus
|