Commit 77843504 authored by Andrew Lunn's avatar Andrew Lunn

ARM: Kirkwood: Replace mrvl with marvell

It has been decided to use marvell, not mrvl, in the compatibility
property. Search & replace.
Signed-off-by: default avatarAndrew Lunn <andrew@lunn.ch>
parent baffab28
NAND support for Marvell Orion SoC platforms NAND support for Marvell Orion SoC platforms
Required properties: Required properties:
- compatible : "mrvl,orion-nand". - compatible : "marvell,orion-nand".
- reg : Base physical address of the NAND and length of memory mapped - reg : Base physical address of the NAND and length of memory mapped
region region
...@@ -24,7 +24,7 @@ nand@f4000000 { ...@@ -24,7 +24,7 @@ nand@f4000000 {
ale = <1>; ale = <1>;
bank-width = <1>; bank-width = <1>;
chip-delay = <25>; chip-delay = <25>;
compatible = "mrvl,orion-nand"; compatible = "marvell,orion-nand";
reg = <0xf4000000 0x400>; reg = <0xf4000000 0x400>;
partition@0 { partition@0 {
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
/ { / {
model = "D-Link DNS-320 NAS (Rev A1)"; model = "D-Link DNS-320 NAS (Rev A1)";
compatible = "dlink,dns-320-a1", "dlink,dns-320", "dlink,dns-kirkwood", "mrvl,kirkwood-88f6281", "mrvl,kirkwood"; compatible = "dlink,dns-320-a1", "dlink,dns-320", "dlink,dns-kirkwood", "marvell,kirkwood-88f6281", "marvell,kirkwood";
memory { memory {
device_type = "memory"; device_type = "memory";
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
/ { / {
model = "D-Link DNS-325 NAS (Rev A1)"; model = "D-Link DNS-325 NAS (Rev A1)";
compatible = "dlink,dns-325-a1", "dlink,dns-325", "dlink,dns-kirkwood", "mrvl,kirkwood-88f6281", "mrvl,kirkwood"; compatible = "dlink,dns-325-a1", "dlink,dns-325", "dlink,dns-kirkwood", "marvell,kirkwood-88f6281", "marvell,kirkwood";
memory { memory {
device_type = "memory"; device_type = "memory";
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
/ { / {
model = "Globalscale Technologies Dreamplug"; model = "Globalscale Technologies Dreamplug";
compatible = "globalscale,dreamplug-003-ds2001", "globalscale,dreamplug", "mrvl,kirkwood-88f6281", "mrvl,kirkwood"; compatible = "globalscale,dreamplug-003-ds2001", "globalscale,dreamplug", "marvell,kirkwood-88f6281", "marvell,kirkwood";
memory { memory {
device_type = "memory"; device_type = "memory";
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
/ { / {
model = "RaidSonic ICY BOX IB-NAS62x0 (Rev B)"; model = "RaidSonic ICY BOX IB-NAS62x0 (Rev B)";
compatible = "raidsonic,ib-nas6210-b", "raidsonic,ib-nas6220-b", "raidsonic,ib-nas6210", "raidsonic,ib-nas6220", "raidsonic,ib-nas62x0", "mrvl,kirkwood-88f6281", "mrvl,kirkwood"; compatible = "raidsonic,ib-nas6210-b", "raidsonic,ib-nas6220-b", "raidsonic,ib-nas6210", "raidsonic,ib-nas6220", "raidsonic,ib-nas62x0", "marvell,kirkwood-88f6281", "marvell,kirkwood";
memory { memory {
device_type = "memory"; device_type = "memory";
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
/ { / {
model = "Iomega Iconnect"; model = "Iomega Iconnect";
compatible = "iom,iconnect-1.1", "iom,iconnect", "mrvl,kirkwood-88f6281", "mrvl,kirkwood"; compatible = "iom,iconnect-1.1", "iom,iconnect", "marvell,kirkwood-88f6281", "marvell,kirkwood";
memory { memory {
device_type = "memory"; device_type = "memory";
......
/include/ "skeleton.dtsi" /include/ "skeleton.dtsi"
/ { / {
compatible = "mrvl,kirkwood"; compatible = "marvell,kirkwood";
ocp@f1000000 { ocp@f1000000 {
compatible = "simple-bus"; compatible = "simple-bus";
...@@ -28,7 +28,7 @@ serial@12100 { ...@@ -28,7 +28,7 @@ serial@12100 {
}; };
rtc@10300 { rtc@10300 {
compatible = "mrvl,kirkwood-rtc", "mrvl,orion-rtc"; compatible = "marvell,kirkwood-rtc", "marvell,orion-rtc";
reg = <0x10300 0x20>; reg = <0x10300 0x20>;
interrupts = <53>; interrupts = <53>;
}; };
...@@ -39,7 +39,7 @@ nand@3000000 { ...@@ -39,7 +39,7 @@ nand@3000000 {
cle = <0>; cle = <0>;
ale = <1>; ale = <1>;
bank-width = <1>; bank-width = <1>;
compatible = "mrvl,orion-nand"; compatible = "marvell,orion-nand";
reg = <0x3000000 0x400>; reg = <0x3000000 0x400>;
chip-delay = <25>; chip-delay = <25>;
/* set partition map and/or chip-delay in board dts */ /* set partition map and/or chip-delay in board dts */
......
...@@ -218,7 +218,7 @@ static int __devexit orion_nand_remove(struct platform_device *pdev) ...@@ -218,7 +218,7 @@ static int __devexit orion_nand_remove(struct platform_device *pdev)
#ifdef CONFIG_OF #ifdef CONFIG_OF
static struct of_device_id orion_nand_of_match_table[] = { static struct of_device_id orion_nand_of_match_table[] = {
{ .compatible = "mrvl,orion-nand", }, { .compatible = "marvell,orion-nand", },
{}, {},
}; };
#endif #endif
......
...@@ -297,7 +297,7 @@ static int __exit mv_rtc_remove(struct platform_device *pdev) ...@@ -297,7 +297,7 @@ static int __exit mv_rtc_remove(struct platform_device *pdev)
#ifdef CONFIG_OF #ifdef CONFIG_OF
static struct of_device_id rtc_mv_of_match_table[] = { static struct of_device_id rtc_mv_of_match_table[] = {
{ .compatible = "mrvl,orion-rtc", }, { .compatible = "marvell,orion-rtc", },
{} {}
}; };
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment