Lines Matching refs:status
9 * Current status:
275 int status;
290 status = twl4030_readb(twl, TWL_MODULE_PM_MASTER, STS_HW_CONDITIONS);
291 if (status < 0)
292 dev_err(twl->dev, "USB link status err %d\n", status);
293 else if (status & (BIT(7) | BIT(2))) {
294 if (status & BIT(7)) {
296 status &= ~BIT(7);
301 if (status & BIT(2))
303 else if (status & BIT(7))
316 status, status, linkstat);
420 /* check whether cable status changed */
581 enum musb_vbus_id_status status;
584 status = twl4030_usb_linkstat(twl);
587 twl->linkstat = status;
590 if (cable_present(status)) {
593 __func__, status);
600 __func__, status);
607 err = musb_mailbox(status);
613 if (status == MUSB_ID_GROUND && pm_runtime_active(twl->dev)) {
688 int status, err;
762 /* Our job is to use irqs and status from the power module
770 status = devm_request_threaded_irq(twl->dev, twl->irq, NULL,
773 if (status < 0) {
775 twl->irq, status);
776 return status;