Lines Matching refs:status
9 * Current status:
272 int status;
287 status = twl4030_readb(twl, TWL_MODULE_PM_MASTER, STS_HW_CONDITIONS);
288 if (status < 0)
289 dev_err(twl->dev, "USB link status err %d\n", status);
290 else if (status & (BIT(7) | BIT(2))) {
291 if (status & BIT(7)) {
293 status &= ~BIT(7);
298 if (status & BIT(2))
300 else if (status & BIT(7))
313 status, status, linkstat);
408 /* check whether cable status changed */
565 enum musb_vbus_id_status status;
568 status = twl4030_usb_linkstat(twl);
571 twl->linkstat = status;
574 if (cable_present(status)) {
577 __func__, status);
584 __func__, status);
591 err = musb_mailbox(status);
597 if (status == MUSB_ID_GROUND && pm_runtime_active(twl->dev)) {
672 int status, err;
746 /* Our job is to use irqs and status from the power module
754 status = devm_request_threaded_irq(twl->dev, twl->irq, NULL,
757 if (status < 0) {
759 twl->irq, status);
760 return status;