All of lore.kernel.org
 help / color / mirror / Atom feed
From: Paul Walmsley <paul@pwsan.com>
To: linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org
Cc: Tomi Valkeinen <tomi.valkeinen@ti.com>
Subject: [PATCH 1/6] OMAPDSS: remove unnecessary plat/clock.h includes
Date: Thu, 27 Sep 2012 10:33:30 -0600	[thread overview]
Message-ID: <20120927163329.21755.34776.stgit@dusk.lan> (raw)
In-Reply-To: <20120927162800.21755.62891.stgit@dusk.lan>

The OMAP DSS video drivers include <plat/clock.h> but don't use any
information from that file.  These includes are causing problems with
ARM single image kernels - remove them.

Signed-off-by: Paul Walmsley <paul@pwsan.com>
Cc: Tomi Valkeinen <tomi.valkeinen@ti.com>
---
 drivers/video/omap2/dss/dispc.c |    1 -
 drivers/video/omap2/dss/dsi.c   |    1 -
 drivers/video/omap2/dss/dss.c   |    1 -
 3 files changed, 3 deletions(-)

diff --git a/drivers/video/omap2/dss/dispc.c b/drivers/video/omap2/dss/dispc.c
index ee9e296..17fcb94 100644
--- a/drivers/video/omap2/dss/dispc.c
+++ b/drivers/video/omap2/dss/dispc.c
@@ -38,7 +38,6 @@
 #include <linux/pm_runtime.h>
 
 #include <plat/cpu.h>
-#include <plat/clock.h>
 
 #include <video/omapdss.h>
 
diff --git a/drivers/video/omap2/dss/dsi.c b/drivers/video/omap2/dss/dsi.c
index b07e886..bf7a080 100644
--- a/drivers/video/omap2/dss/dsi.c
+++ b/drivers/video/omap2/dss/dsi.c
@@ -41,7 +41,6 @@
 
 #include <video/omapdss.h>
 #include <video/mipi_display.h>
-#include <plat/clock.h>
 
 #include "dss.h"
 #include "dss_features.h"
diff --git a/drivers/video/omap2/dss/dss.c b/drivers/video/omap2/dss/dss.c
index 04b4586..1dfef0e 100644
--- a/drivers/video/omap2/dss/dss.c
+++ b/drivers/video/omap2/dss/dss.c
@@ -35,7 +35,6 @@
 #include <video/omapdss.h>
 
 #include <plat/cpu.h>
-#include <plat/clock.h>
 
 #include "dss.h"
 #include "dss_features.h"



WARNING: multiple messages have this Message-ID (diff)
From: paul@pwsan.com (Paul Walmsley)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/6] OMAPDSS: remove unnecessary plat/clock.h includes
Date: Thu, 27 Sep 2012 10:33:30 -0600	[thread overview]
Message-ID: <20120927163329.21755.34776.stgit@dusk.lan> (raw)
In-Reply-To: <20120927162800.21755.62891.stgit@dusk.lan>

The OMAP DSS video drivers include <plat/clock.h> but don't use any
information from that file.  These includes are causing problems with
ARM single image kernels - remove them.

Signed-off-by: Paul Walmsley <paul@pwsan.com>
Cc: Tomi Valkeinen <tomi.valkeinen@ti.com>
---
 drivers/video/omap2/dss/dispc.c |    1 -
 drivers/video/omap2/dss/dsi.c   |    1 -
 drivers/video/omap2/dss/dss.c   |    1 -
 3 files changed, 3 deletions(-)

diff --git a/drivers/video/omap2/dss/dispc.c b/drivers/video/omap2/dss/dispc.c
index ee9e296..17fcb94 100644
--- a/drivers/video/omap2/dss/dispc.c
+++ b/drivers/video/omap2/dss/dispc.c
@@ -38,7 +38,6 @@
 #include <linux/pm_runtime.h>
 
 #include <plat/cpu.h>
-#include <plat/clock.h>
 
 #include <video/omapdss.h>
 
diff --git a/drivers/video/omap2/dss/dsi.c b/drivers/video/omap2/dss/dsi.c
index b07e886..bf7a080 100644
--- a/drivers/video/omap2/dss/dsi.c
+++ b/drivers/video/omap2/dss/dsi.c
@@ -41,7 +41,6 @@
 
 #include <video/omapdss.h>
 #include <video/mipi_display.h>
-#include <plat/clock.h>
 
 #include "dss.h"
 #include "dss_features.h"
diff --git a/drivers/video/omap2/dss/dss.c b/drivers/video/omap2/dss/dss.c
index 04b4586..1dfef0e 100644
--- a/drivers/video/omap2/dss/dss.c
+++ b/drivers/video/omap2/dss/dss.c
@@ -35,7 +35,6 @@
 #include <video/omapdss.h>
 
 #include <plat/cpu.h>
-#include <plat/clock.h>
 
 #include "dss.h"
 #include "dss_features.h"

  reply	other threads:[~2012-09-27 16:35 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-09-27 16:33 [PATCH 0/6] ARM: OMAP: remove clock files in arch/arm/plat-omap Paul Walmsley
2012-09-27 16:33 ` Paul Walmsley
2012-09-27 16:33 ` Paul Walmsley [this message]
2012-09-27 16:33   ` [PATCH 1/6] OMAPDSS: remove unnecessary plat/clock.h includes Paul Walmsley
2012-09-28  6:24   ` Tomi Valkeinen
2012-09-28  6:24     ` Tomi Valkeinen
2012-09-28  6:28     ` Paul Walmsley
2012-09-28  6:28       ` Paul Walmsley
2012-09-27 16:33 ` [PATCH 2/6] staging: tidspbridge: remove unnecessary include of <plat/clock.h> Paul Walmsley
2012-09-27 16:33   ` Paul Walmsley
2012-09-27 16:33 ` [PATCH 3/6] cpufreq: OMAP: remove unnecessary include of plat/clock.h Paul Walmsley
2012-09-27 16:33   ` Paul Walmsley
2012-09-27 16:33 ` [PATCH 4/6] ARM: OMAP: duplicate plat-omap/clock.c into mach-omap[12]/clock.c Paul Walmsley
2012-09-27 16:33   ` Paul Walmsley
2012-09-27 16:33 ` [PATCH 5/6] ARM: OMAP: remove plat/clock.h Paul Walmsley
2012-09-27 16:33   ` Paul Walmsley
2012-10-02 23:14   ` Tony Lindgren
2012-10-02 23:14     ` Tony Lindgren
2012-10-03  2:40     ` Paul Walmsley
2012-10-03  2:40       ` Paul Walmsley
2012-09-27 16:33 ` [PATCH 6/6] ARM: OMAP: clock: split plat/clkdev_omap.h into OMAP1/2 files Paul Walmsley
2012-09-27 16:33   ` Paul Walmsley

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=20120927163329.21755.34776.stgit@dusk.lan \
    --to=paul@pwsan.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-omap@vger.kernel.org \
    --cc=tomi.valkeinen@ti.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.