aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2014-12-01 16:15:30 +0000
committerJohn Crispin <blogic@openwrt.org>2014-12-01 16:15:30 +0000
commit841fc9915f9cc5f188f979da879094979a09863d (patch)
tree632b79beff2861433c6b8c8cf776c541455a79c8
parentb040855a9151030a48c198dcebaf061557e7154c (diff)
downloadmaster-187ad058-841fc9915f9cc5f188f979da879094979a09863d.tar.gz
master-187ad058-841fc9915f9cc5f188f979da879094979a09863d.tar.bz2
master-187ad058-841fc9915f9cc5f188f979da879094979a09863d.zip
oxnas: ehci: rename vendor prefix plxtch to plxtech
it was changed in DTS by commit oxnas-target: fix typo in OX820 device-tree Signed-off-by: Daniel Golle <daniel@makrotopia.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@43474 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r--target/linux/oxnas/files/arch/arm/boot/dts/ox820.dtsi2
-rw-r--r--target/linux/oxnas/files/drivers/usb/host/ehci-oxnas.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/target/linux/oxnas/files/arch/arm/boot/dts/ox820.dtsi b/target/linux/oxnas/files/arch/arm/boot/dts/ox820.dtsi
index 0a643a4e81..77efd43157 100644
--- a/target/linux/oxnas/files/arch/arm/boot/dts/ox820.dtsi
+++ b/target/linux/oxnas/files/arch/arm/boot/dts/ox820.dtsi
@@ -336,7 +336,7 @@
/* Otherwise ref300 is used, which is derived from sata phy
* in that case, usb depends on sata initialization */
/* FIXME: how to make this dependency explicit ? */
- plxtch,ehci_use_pllb;
+ plxtech,ehci_use_pllb;
status = "disabled";
};
};
diff --git a/target/linux/oxnas/files/drivers/usb/host/ehci-oxnas.c b/target/linux/oxnas/files/drivers/usb/host/ehci-oxnas.c
index 23c5061ec5..dae5589c50 100644
--- a/target/linux/oxnas/files/drivers/usb/host/ehci-oxnas.c
+++ b/target/linux/oxnas/files/drivers/usb/host/ehci-oxnas.c
@@ -172,8 +172,8 @@ static int ehci_oxnas_drv_probe(struct platform_device *ofdev)
oxnas = (struct oxnas_hcd *)hcd_to_ehci(hcd)->priv;
- oxnas->use_pllb = of_property_read_bool(np, "plxtch,ehci_use_pllb");
- oxnas->use_phya = of_property_read_bool(np, "plxtch,ehci_use_phya");
+ oxnas->use_pllb = of_property_read_bool(np, "plxtech,ehci_use_pllb");
+ oxnas->use_phya = of_property_read_bool(np, "plxtech,ehci_use_phya");
oxnas->clk = of_clk_get_by_name(np, "usb");
if (IS_ERR(oxnas->clk)) {
@@ -276,7 +276,7 @@ static int ehci_oxnas_drv_remove(struct platform_device *pdev)
}
static const struct of_device_id oxnas_ehci_dt_ids[] = {
- { .compatible = "plxtch,nas782x-ehci" },
+ { .compatible = "plxtech,nas782x-ehci" },
{ /* sentinel */ }
};