summaryrefslogtreecommitdiff
path: root/drivers/usb/cdns3/drd.h
diff options
context:
space:
mode:
authorPawel Laszczak <pawell@cadence.com>2020-07-13 13:05:50 +0300
committerFelipe Balbi <balbi@kernel.org>2020-07-24 16:45:13 +0300
commit245258495a5157e4428bd944189e4062d852dcdd (patch)
treeca96697f80fcc515f77682e70ed1105fe7faf44d /drivers/usb/cdns3/drd.h
parent03cce68a828dba13b3715033e5133839820218c3 (diff)
downloadlinux-245258495a5157e4428bd944189e4062d852dcdd.tar.xz
usb: cdns3: drd: changed return type from int to bool
Patch changes return type from int to bool for cdns3_is_host and cdns3_is_device functions. Reviewed-by: Peter Chen <peter.chen@nxp.com> Signed-off-by: Pawel Laszczak <pawell@cadence.com> Signed-off-by: Felipe Balbi <balbi@kernel.org>
Diffstat (limited to 'drivers/usb/cdns3/drd.h')
-rw-r--r--drivers/usb/cdns3/drd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/cdns3/drd.h b/drivers/usb/cdns3/drd.h
index 04e01c4d2377..35b6d459ee58 100644
--- a/drivers/usb/cdns3/drd.h
+++ b/drivers/usb/cdns3/drd.h
@@ -153,8 +153,8 @@ struct cdns3_otg_common_regs {
/* Only for CDNS3_CONTROLLER_V0 version */
#define OVERRIDE_IDPULLUP_V0 BIT(24)
-int cdns3_is_host(struct cdns3 *cdns);
-int cdns3_is_device(struct cdns3 *cdns);
+bool cdns3_is_host(struct cdns3 *cdns);
+bool cdns3_is_device(struct cdns3 *cdns);
int cdns3_get_id(struct cdns3 *cdns);
int cdns3_get_vbus(struct cdns3 *cdns);
int cdns3_drd_init(struct cdns3 *cdns);