linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mtd: devices: elm: Removes <xx> literals in elm DT node
@ 2013-01-24  6:53 Philip Avinash
  2013-01-24  8:30 ` Peter Korsgaard
  2013-02-04  8:08 ` Artem Bityutskiy
  0 siblings, 2 replies; 4+ messages in thread
From: Philip Avinash @ 2013-01-24  6:53 UTC (permalink / raw)
  To: dwmw2, artem.bityutskiy, grant.likely, rob.herring, rob
  Cc: linux-mtd, linux-kernel, devicetree-discuss, linux-doc, nsekhar,
	gururaja.hebbar, hvaibhav, Philip Avinash

As part of removing generalized dependency, replace <xx> literal fields
in DT compatible field with <52> for am335x platforms.

Signed-off-by: Philip Avinash <avinashphilip@ti.com>
---
 Documentation/devicetree/bindings/mtd/elm.txt |    2 +-
 drivers/mtd/devices/elm.c                     |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Documentation/devicetree/bindings/mtd/elm.txt b/Documentation/devicetree/bindings/mtd/elm.txt
index e43c668..8c1528c 100644
--- a/Documentation/devicetree/bindings/mtd/elm.txt
+++ b/Documentation/devicetree/bindings/mtd/elm.txt
@@ -10,7 +10,7 @@ Optional properties:
 
 Example:
 elm: elm@0 {
-	compatible	= "ti,am33xx-elm";
+	compatible = "ti,am3352-elm";
 	reg = <0x48080000 0x2000>;
 	interrupts = <4>;
 };
diff --git a/drivers/mtd/devices/elm.c b/drivers/mtd/devices/elm.c
index f78f43f..f034239 100644
--- a/drivers/mtd/devices/elm.c
+++ b/drivers/mtd/devices/elm.c
@@ -381,7 +381,7 @@ static int elm_remove(struct platform_device *pdev)
 
 #ifdef CONFIG_OF
 static const struct of_device_id elm_of_match[] = {
-	{ .compatible = "ti,am33xx-elm" },
+	{ .compatible = "ti,am3352-elm" },
 	{},
 };
 MODULE_DEVICE_TABLE(of, elm_of_match);
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] mtd: devices: elm: Removes <xx> literals in elm DT node
  2013-01-24  6:53 [PATCH] mtd: devices: elm: Removes <xx> literals in elm DT node Philip Avinash
@ 2013-01-24  8:30 ` Peter Korsgaard
  2013-01-31  3:58   ` Philip, Avinash
  2013-02-04  8:08 ` Artem Bityutskiy
  1 sibling, 1 reply; 4+ messages in thread
From: Peter Korsgaard @ 2013-01-24  8:30 UTC (permalink / raw)
  To: Philip Avinash
  Cc: dwmw2, artem.bityutskiy, grant.likely, rob.herring, rob,
	linux-doc, devicetree-discuss, nsekhar, linux-kernel,
	gururaja.hebbar, linux-mtd

>>>>> "Philip" == Philip Avinash <avinashphilip@ti.com> writes:

 Philip> As part of removing generalized dependency, replace <xx>
 Philip> literal fields in DT compatible field with <52> for am335x
 Philip> platforms.

Acked-by: Peter Korsgaard <jacmet@sunsite.dk>

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 4+ messages in thread

* RE: [PATCH] mtd: devices: elm: Removes <xx> literals in elm DT node
  2013-01-24  8:30 ` Peter Korsgaard
@ 2013-01-31  3:58   ` Philip, Avinash
  0 siblings, 0 replies; 4+ messages in thread
From: Philip, Avinash @ 2013-01-31  3:58 UTC (permalink / raw)
  To: artem.bityutskiy, Peter Korsgaard
  Cc: dwmw2, grant.likely, rob.herring, rob, linux-doc,
	devicetree-discuss, Nori, Sekhar, linux-kernel, Hebbar, Gururaja,
	linux-mtd

Hi Artem,

On Thu, Jan 24, 2013 at 14:00:38, Peter Korsgaard wrote:
> >>>>> "Philip" == Philip Avinash <avinashphilip@ti.com> writes:
> 
>  Philip> As part of removing generalized dependency, replace <xx>
>  Philip> literal fields in DT compatible field with <52> for am335x
>  Philip> platforms.
> 
> Acked-by: Peter Korsgaard <jacmet@sunsite.dk>

Can you please accept this patch for am3352 compatibility in ELM node.

Peter,
Thanks for ack.

Thanks
Avinash

> 
> -- 
> Bye, Peter Korsgaard
> 


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] mtd: devices: elm: Removes <xx> literals in elm DT node
  2013-01-24  6:53 [PATCH] mtd: devices: elm: Removes <xx> literals in elm DT node Philip Avinash
  2013-01-24  8:30 ` Peter Korsgaard
@ 2013-02-04  8:08 ` Artem Bityutskiy
  1 sibling, 0 replies; 4+ messages in thread
From: Artem Bityutskiy @ 2013-02-04  8:08 UTC (permalink / raw)
  To: Philip Avinash
  Cc: dwmw2, grant.likely, rob.herring, rob, linux-mtd, linux-kernel,
	devicetree-discuss, linux-doc, nsekhar, gururaja.hebbar,
	hvaibhav

[-- Attachment #1: Type: text/plain, Size: 324 bytes --]

On Thu, 2013-01-24 at 12:23 +0530, Philip Avinash wrote:
> As part of removing generalized dependency, replace <xx> literal fields
> in DT compatible field with <52> for am335x platforms.
> 
> Signed-off-by: Philip Avinash <avinashphilip@ti.com>

Pushed to l2-mtd.git, thanks!

-- 
Best Regards,
Artem Bityutskiy

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-02-04  8:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-01-24  6:53 [PATCH] mtd: devices: elm: Removes <xx> literals in elm DT node Philip Avinash
2013-01-24  8:30 ` Peter Korsgaard
2013-01-31  3:58   ` Philip, Avinash
2013-02-04  8:08 ` Artem Bityutskiy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).