Lines Matching refs:status
100 int status = tps65010_set_vbus_draw(mA);
101 if (status < 0)
102 pr_debug(" VBUS %d mA error %d\n", mA, status);
313 int status;
317 status = schedule_work(&isp->work);
318 if (!status && !isp->working)
376 u8 status = isp1301_get_u8(isp, ISP1301_OTG_STATUS);
381 ctrl, status, src);
392 * We translate isp1301 outputs (mostly voltage comparator status) into
874 int status;
879 status = platform_driver_register(&omap_otg_driver);
880 if (status < 0)
881 return status;
884 status = request_irq(otg_dev->resource[1].start, omap_otg_irq,
887 status = -ENODEV;
889 if (status < 0)
891 return status;
1481 int status;
1504 status = isp1301_get_u16(isp, ISP1301_VENDOR_ID);
1505 if (status != I2C_VENDOR_ID_PHILIPS) {
1506 dev_dbg(&i2c->dev, "not philips id: %d\n", status);
1509 status = isp1301_get_u16(isp, ISP1301_PRODUCT_ID);
1510 if (status != I2C_PRODUCT_ID_PHILIPS_1301) {
1511 dev_dbg(&i2c->dev, "not isp1301, %d\n", status);
1518 status = i2c_smbus_read_word_data(i2c, ISP1301_BCD_DEVICE);
1520 status >> 8, status & 0xff);
1538 status = otg_bind(isp);
1539 if (status < 0) {
1559 status = request_irq(i2c->irq, isp1301_irq,
1561 if (status < 0) {
1563 i2c->irq, status);
1593 status = usb_add_phy(&isp->phy, USB_PHY_TYPE_USB2);
1594 if (status < 0)
1596 status);