doc: replace @return by Return:
[platform/kernel/u-boot.git] / drivers / serial / serial_bcm283x_pl011.c
index 923f402..fe74629 100644 (file)
@@ -17,7 +17,7 @@
  * The serial device will only work properly if it has been muxed to the serial
  * pins by firmware. Check whether that happened here.
  *
- * @return true if serial device is muxed, false if not
+ * Return: true if serial device is muxed, false if not
  */
 static bool bcm283x_is_serial_muxed(void)
 {
@@ -35,7 +35,7 @@ static bool bcm283x_is_serial_muxed(void)
 
 static int bcm283x_pl011_serial_probe(struct udevice *dev)
 {
-       struct pl01x_serial_platdata *plat = dev_get_platdata(dev);
+       struct pl01x_serial_plat *plat = dev_get_plat(dev);
        int ret;
 
        /* Don't spawn the device if it's not muxed */
@@ -43,11 +43,11 @@ static int bcm283x_pl011_serial_probe(struct udevice *dev)
                return -ENODEV;
 
        /*
-        * Read the ofdata here rather than in an ofdata_to_platdata() method
+        * Read the ofdata here rather than in an of_to_plat() method
         * since we need the soc simple-bus to be probed so that the 'ranges'
         * property is used.
         */
-       ret = pl01x_serial_ofdata_to_platdata(dev);
+       ret = pl01x_serial_of_to_plat(dev);
        if (ret)
                return ret;
 
@@ -92,10 +92,10 @@ U_BOOT_DRIVER(bcm283x_pl011_uart) = {
        .id     = UCLASS_SERIAL,
        .of_match = of_match_ptr(bcm283x_pl011_serial_id),
        .probe  = bcm283x_pl011_serial_probe,
-       .platdata_auto_alloc_size = sizeof(struct pl01x_serial_platdata),
+       .plat_auto      = sizeof(struct pl01x_serial_plat),
        .ops    = &bcm283x_pl011_serial_ops,
 #if !CONFIG_IS_ENABLED(OF_CONTROL) || CONFIG_IS_ENABLED(OF_BOARD)
        .flags  = DM_FLAG_PRE_RELOC,
 #endif
-       .priv_auto_alloc_size = sizeof(struct pl01x_priv),
+       .priv_auto      = sizeof(struct pl01x_priv),
 };