sunxi: usb: Switch to Generic host controllers
[platform/kernel/u-boot.git] / include / reset-uclass.h
index c17d738..7b5cc3c 100644 (file)
@@ -76,6 +76,14 @@ struct reset_ops {
         * @return 0 if OK, or a negative error code.
         */
        int (*rst_deassert)(struct reset_ctl *reset_ctl);
+       /**
+        * rst_status - Check reset signal status.
+        *
+        * @reset_ctl:  The reset signal to check.
+        * @return 0 if deasserted, positive if asserted, or a negative
+        *           error code.
+        */
+       int (*rst_status)(struct reset_ctl *reset_ctl);
 };
 
 #endif