Merge tag 'next-20220328' of https://source.denx.de/u-boot/custodians/u-boot-video...
[platform/kernel/u-boot.git] / include / ufs.h
index 0592a76..702b835 100644 (file)
@@ -1,10 +1,13 @@
 /* SPDX-License-Identifier: GPL-2.0+ */
 #ifndef _UFS_H
 #define _UFS_H
+
+struct udevice;
+
 /**
  * ufs_probe() - initialize all devices in the UFS uclass
  *
- * @return 0 if Ok, -ve on error
+ * Return: 0 if Ok, -ve on error
  */
 int ufs_probe(void);
 
@@ -13,7 +16,7 @@ int ufs_probe(void);
  *
  * @index: index in the uclass sequence
  *
- * @return 0 if successfully probed, -ve on error
+ * Return: 0 if successfully probed, -ve on error
  */
 int ufs_probe_dev(int index);
 
@@ -23,7 +26,7 @@ int ufs_probe_dev(int index);
  * @ufs_dev: UFS device
  * @scsi_devp: Pointer to scsi device
  *
- * @return 0 if Ok, -ve on error
+ * Return: 0 if Ok, -ve on error
  */
 int ufs_scsi_bind(struct udevice *ufs_dev, struct udevice **scsi_devp);
 #endif