]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
phy: meson-axg-mipi: Rename "priv_auto_alloc_size" to "priv_auto"
authorAlper Nebi Yasak <alpernebiyasak@gmail.com>
Fri, 14 May 2021 20:54:19 +0000 (23:54 +0300)
committerNeil Armstrong <narmstrong@baylibre.com>
Tue, 27 Jul 2021 08:32:09 +0000 (10:32 +0200)
With commit 41575d8e4c33 ("dm: treewide: Rename auto_alloc_size members
to be shorter") "priv_auto_alloc_size" was renamed to "priv_auto". Apply
the rename to these two drivers as well.

Fixes: 4547551aa019 ("phy: Add Amlogic AXG MIPI PCIe Analog PHY driver")
Fixes: 7ef19503bacf ("phy: Add Amlogic AXG MIPI D-PHY driver")
Signed-off-by: Alper Nebi Yasak <alpernebiyasak@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
drivers/phy/meson-axg-mipi-dphy.c
drivers/phy/meson-axg-mipi-pcie-analog.c

index 8b2469793ddcf31828e7a734a5d6b0c75f051998..cf2a1cd14c7f548f512feea7ece51c7bd7845bcb 100644 (file)
@@ -389,5 +389,5 @@ U_BOOT_DRIVER(meson_axg_mipi_dphy) = {
        .of_match = meson_axg_mipi_dphy_ids,
        .probe = meson_axg_mipi_dphy_probe,
        .ops = &meson_axg_mipi_dphy_ops,
-       .priv_auto_alloc_size = sizeof(struct phy_meson_axg_mipi_dphy_priv),
+       .priv_auto = sizeof(struct phy_meson_axg_mipi_dphy_priv),
 };
index 276e6004e5ee224005da9d3f0b47e34e9c7aa6e3..7106c23d508fbd09abca54a0084b043e34e14ef5 100644 (file)
@@ -229,5 +229,5 @@ U_BOOT_DRIVER(meson_axg_mipi_pcie_analog) = {
        .of_match = meson_axg_mipi_pcie_analog_ids,
        .probe = meson_axg_mipi_pcie_analog_probe,
        .ops = &meson_axg_mipi_pcie_analog_ops,
-       .priv_auto_alloc_size = sizeof(struct phy_meson_axg_mipi_pcie_analog_priv),
+       .priv_auto = sizeof(struct phy_meson_axg_mipi_pcie_analog_priv),
 };