All of lore.kernel.org
 help / color / mirror / Atom feed
From: Imre Deak <imre.deak@nokia.com>
To: ext Krzysztof Helt <krzysztof.h1@poczta.fm>
Cc: Antonino Daplas <adaplas@gmail.com>,
	"linux-fbdev-devel@lists.sourceforge.net"
	<linux-fbdev-devel@lists.sourceforge.net>,
	"linux-omap@vger.kernel.org" <linux-omap@vger.kernel.org>,
	Tony Lindgren <tony@atomide.com>,
	"Valkeinen Tomi (Nokia-D/Helsinki)" <Tomi.Valkeinen@nokia.com>
Subject: Re: [PULL REQUEST] omapfb: Add support for new LCDs / misc fixes
Date: Mon, 22 Jun 2009 22:17:24 +0300	[thread overview]
Message-ID: <20090622191724.GA14760@localhost> (raw)
In-Reply-To: <20090617102520.GC2926@localhost>

Krzysztof,

On Wed, Jun 17, 2009 at 12:25:20PM +0200, Deak Imre (Nokia-D/Helsinki) wrote:
> On Tue, Jun 16, 2009 at 06:58:25PM +0200, ext Krzysztof Helt wrote:
> > On Thu, 11 Jun 2009 15:02:06 +0300
> > Imre Deak <imre.deak@nokia.com> wrote:
> > 
> > > Hi,
> > > 
> > > the following pull request is for the patchset updated based on your comments:
> > > 
> > > The following changes since commit 07a2039b8eb0af4ff464efd3dfd95de5c02648c6:
> > >   Linus Torvalds (1):
> > >         Linux 2.6.30
> > > 
> > > are available in the git repository at:
> > > 
> > >   git://koowaldah.org/people/imre/linux-2.6-fb master
> > > 
> > > Daniel Stone (1):
> > >       omapfb: dispc: Allow multiple external IRQ handlers
> > > 
> > > Hunyue Yau (1):
> > >       omapfb: Add support for the 2430SDP LCD
> > > 
> > > Imre Deak (5):
> > >       omapfb: Add support for MIPI-DCS compatible LCDs
> > >       N770: Enable LCD MIPI-DCS in Kconfig
> > >       omapfb: dispc: Various typo fixes
> > >       omapfb: Add FB manual update option to Kconfig
> > >       omapfb: HWA742: fix pointer to be const
> > > 
> > > Jonathan McDowell (1):
> > >       omapfb: Add support for the Amstrad Delta LCD
> > > 
> > > Jouni Hogander (2):
> > >       omapfb: dispc: Disable iface clocks along with func clocks
> > >       omapfb: dispc: Enable wake up capability
> > > 
> > > Jouni Högander (1):
> > >       omapfb: suspend/resume only if FB device is already initialized
> > > 
> > > Kevin Hilman (1):
> > >       omapfb: Add support for the 3430SDP LCD
> > > 
> > > Koen Kooi (1):
> > >       omapfb: Add support for the OMAP3 Beagle DVI output
> > > 
> > > Kyungmin Park (1):
> > >       omapfb: Add support for the Apollon LCD
> > > 
> > > Rodrigo Vivi (1):
> > >       omapfb: Add support for rotation on the Blizzard LCD ctrl
> > > 
> > > Stanley.Miao (1):
> > >       omapfb: Add support for the ZOOM MDK LCD
> > > 
> > > Steve Sakoman (2):
> > >       omapfb: Add support for the OMAP3 EVM LCD
> > >       omapfb: Add support for the Gumstix Overo LCD
> > > 
> > > arun c (2):
> > >       omapfb: Add support for the OMAP2EVM LCD
> > >       omapfb: Fix coding style / remove dead line
> > > 
> > >  arch/arm/configs/n770_defconfig             |    2 +-
> > >  arch/arm/configs/omap3_beagle_defconfig     |   47 ++-
> > >  arch/arm/configs/omap_3430sdp_defconfig     |   39 ++-
> > >  arch/arm/configs/omap_ldp_defconfig         |   54 +++-
> > >  arch/arm/plat-omap/include/mach/lcd_mipid.h |    5 +
> > >  arch/arm/plat-omap/include/mach/omapfb.h    |    4 +-
> > >  drivers/video/omap/Kconfig                  |   82 +++-
> > >  drivers/video/omap/Makefile                 |   12 +
> > >  drivers/video/omap/blizzard.c               |   91 ++++-
> > >  drivers/video/omap/dispc.c                  |  130 ++++---
> > >  drivers/video/omap/dispc.h                  |    7 +-
> > >  drivers/video/omap/hwa742.c                 |    2 +-
> > >  drivers/video/omap/lcd_2430sdp.c            |  200 +++++++++
> > >  drivers/video/omap/lcd_ams_delta.c          |  137 ++++++
> > >  drivers/video/omap/lcd_apollon.c            |  138 ++++++
> > >  drivers/video/omap/lcd_ldp.c                |  200 +++++++++
> > >  drivers/video/omap/lcd_mipid.c              |  625 +++++++++++++++++++++++++++
> > >  drivers/video/omap/lcd_omap2evm.c           |  189 ++++++++
> > >  drivers/video/omap/lcd_omap3beagle.c        |  133 ++++++
> > >  drivers/video/omap/lcd_omap3evm.c           |  191 ++++++++
> > >  drivers/video/omap/lcd_overo.c              |  179 ++++++++
> > >  drivers/video/omap/omapfb_main.c            |   64 ++-
> > >  drivers/video/omap/rfbi.c                   |    7 +-
> > >  23 files changed, 2424 insertions(+), 114 deletions(-)
> > >  create mode 100644 drivers/video/omap/lcd_2430sdp.c
> > >  create mode 100644 drivers/video/omap/lcd_ams_delta.c
> > >  create mode 100644 drivers/video/omap/lcd_apollon.c
> > >  create mode 100644 drivers/video/omap/lcd_ldp.c
> > >  create mode 100644 drivers/video/omap/lcd_mipid.c
> > >  create mode 100644 drivers/video/omap/lcd_omap2evm.c
> > >  create mode 100644 drivers/video/omap/lcd_omap3beagle.c
> > >  create mode 100644 drivers/video/omap/lcd_omap3evm.c
> > >  create mode 100644 drivers/video/omap/lcd_overo.c
> > >
> > 
> > I assume you introduced small changes after my review. 
> > 
> > For the whole patchset:
> > 
> > Acked-by: Krzysztof Helt <krzysztof.h1@wp.pl>
> 
> Yes, I've updated the patchset based on our discussion. I've also
> added your acked-by line.

I can't see this merged yet to Linus' tree. When are you planning
to submit it?

--Imre

--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

  reply	other threads:[~2009-06-22 19:17 UTC|newest]

Thread overview: 59+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-06-04 17:52 [PATCH 00/20] omapfb: Add support for new LCDs / misc fixes Imre Deak
2009-06-04 17:52 ` [PATCH 01/20] omapfb: Add support for the Apollon LCD Imre Deak
2009-06-04 17:52   ` [PATCH 02/20] omapfb: Add support for MIPI-DCS compatible LCDs Imre Deak
2009-06-07 22:43     ` Krzysztof Helt
2009-06-09 11:15       ` [Linux-fbdev-devel] " Imre Deak
2009-06-10 14:48         ` [PATCH] " Imre Deak
2009-06-14 21:48         ` [Linux-fbdev-devel] [PATCH 02/20] " Krzysztof Helt
2009-06-04 17:52   ` [PATCH 03/20] N770: Enable LCD MIPI-DCS in Kconfig Imre Deak
2009-06-04 17:52   ` [PATCH 04/20] omapfb: Add support for the Amstrad Delta LCD Imre Deak
2009-06-05 10:38     ` Janusz Krzysztofik
2009-06-05 10:38       ` Janusz Krzysztofik
2009-06-05 11:39       ` Janusz Krzysztofik
2009-06-05 15:39       ` Jonathan McDowell
2009-06-05 15:39         ` Jonathan McDowell
2009-06-14 21:27     ` [Linux-fbdev-devel] " Krzysztof Helt
2009-06-04 17:52   ` [PATCH 05/20] omapfb: Add support for the 2430SDP LCD Imre Deak
2009-06-14 21:29     ` [Linux-fbdev-devel] " Krzysztof Helt
2009-06-16 10:47       ` Imre Deak
2009-06-04 17:52   ` [PATCH 06/20] omapfb: Add support for the OMAP2EVM LCD Imre Deak
2009-06-14 21:30     ` [Linux-fbdev-devel] " Krzysztof Helt
2009-06-16 10:51       ` Imre Deak
2009-06-04 17:52   ` [PATCH 07/20] omapfb: Add support for the 3430SDP LCD Imre Deak
2009-06-14 21:31     ` [Linux-fbdev-devel] " Krzysztof Helt
2009-06-04 17:52   ` [PATCH 08/20] omapfb: Add support for the OMAP3 EVM LCD Imre Deak
2009-06-14 21:33     ` [Linux-fbdev-devel] " Krzysztof Helt
2009-06-16 10:54       ` Imre Deak
2009-06-04 17:52   ` [PATCH 09/20] omapfb: Add support for the OMAP3 Beagle DVI output Imre Deak
2009-06-14 21:34     ` [Linux-fbdev-devel] " Krzysztof Helt
2009-06-04 17:52   ` [PATCH 10/20] omapfb: Add support for the Gumstix Overo LCD Imre Deak
2009-06-14 21:35     ` [Linux-fbdev-devel] " Krzysztof Helt
2009-06-04 17:52   ` [PATCH 11/20] omapfb: Add support for the ZOOM MDK LCD Imre Deak
2009-06-14 21:37     ` [Linux-fbdev-devel] " Krzysztof Helt
2009-06-14 21:47     ` Krzysztof Helt
2009-06-16 11:10       ` Imre Deak
2009-06-04 17:52   ` [PATCH 12/20] omapfb: Add support for rotation on the Blizzard LCD ctrl Imre Deak
2009-06-14 21:38     ` [Linux-fbdev-devel] " Krzysztof Helt
2009-06-04 17:52   ` [PATCH 13/20] omapfb: dispc: Various typo fixes Imre Deak
2009-06-14 21:38     ` [Linux-fbdev-devel] " Krzysztof Helt
2009-06-04 17:52   ` [PATCH 14/20] omapfb: dispc: Disable iface clocks along with func clocks Imre Deak
2009-06-14 21:39     ` [Linux-fbdev-devel] " Krzysztof Helt
2009-06-04 17:52   ` [PATCH 15/20] omapfb: dispc: Enable wake up capability Imre Deak
2009-06-14 21:40     ` [Linux-fbdev-devel] " Krzysztof Helt
2009-06-04 17:52   ` [PATCH 16/20] omapfb: dispc: Allow multiple external IRQ handlers Imre Deak
2009-06-14 21:41     ` [Linux-fbdev-devel] " Krzysztof Helt
2009-06-04 17:52   ` [PATCH 17/20] omapfb: suspend/resume only if FB device is already initialized Imre Deak
2009-06-14 21:42     ` [Linux-fbdev-devel] " Krzysztof Helt
2009-06-04 17:52   ` [PATCH 18/20] omapfb: Fix coding style / remove dead line Imre Deak
2009-06-14 21:43     ` [Linux-fbdev-devel] " Krzysztof Helt
2009-06-04 17:52   ` [PATCH 19/20] omapfb: Add FB manual update option to Kconfig Imre Deak
2009-06-14 21:44     ` [Linux-fbdev-devel] " Krzysztof Helt
2009-06-04 17:52   ` [PATCH 20/20] omapfb: HWA742: fix pointer to be const Imre Deak
2009-06-14 21:45     ` Krzysztof Helt
2009-06-07 22:41   ` [Linux-fbdev-devel] [PATCH 01/20] omapfb: Add support for the Apollon LCD Krzysztof Helt
2009-06-04 21:00 ` [Linux-fbdev-devel] [PATCH 00/20] omapfb: Add support for new LCDs / misc fixes Krzysztof Helt
2009-06-11 12:02 ` [PULL REQUEST] " Imre Deak
2009-06-16 16:58   ` Krzysztof Helt
2009-06-17 10:25     ` Imre Deak
2009-06-22 19:17       ` Imre Deak [this message]
2009-06-23 21:02         ` Krzysztof Helt

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=20090622191724.GA14760@localhost \
    --to=imre.deak@nokia.com \
    --cc=Tomi.Valkeinen@nokia.com \
    --cc=adaplas@gmail.com \
    --cc=krzysztof.h1@poczta.fm \
    --cc=linux-fbdev-devel@lists.sourceforge.net \
    --cc=linux-omap@vger.kernel.org \
    --cc=tony@atomide.com \
    /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.