Lines Matching refs:status
93 u64 status;
95 result = acpi_evaluate_integer(handle, "BTST", NULL, &status);
97 pr_err("Could not get Bluetooth device status\n");
101 return status;
145 int status;
147 status = toshiba_bluetooth_status(bt_dev->acpi_dev->handle);
148 if (status < 0) {
149 pr_err("Could not sync bluetooth device status\n");
150 return status;
153 bt_dev->killswitch = (status & BT_KILLSWITCH_MASK) ? true : false;
154 bt_dev->plugged = (status & BT_PLUGGED_MASK) ? true : false;
155 bt_dev->powered = (status & BT_POWER_MASK) ? true : false;
157 pr_debug("Bluetooth status %d killswitch %d plugged %d powered %d\n",
158 status, bt_dev->killswitch, bt_dev->plugged, bt_dev->powered);