Lines Matching defs:output
166 TP_HKEY_EV_VOL_MUTE = 0x1017, /* Mixer output mute */
4821 TP_ACPI_VIDEO_S_LCD = 0x01, /* LCD output enabled */
4822 TP_ACPI_VIDEO_S_CRT = 0x02, /* CRT output enabled */
4823 TP_ACPI_VIDEO_S_DVI = 0x08, /* DVI output enabled */
9224 int output;
9231 if (!acpi_evalf(hkey_handle, &output, t->name, "dd",
9933 int output;
9938 if (!acpi_evalf(lcdshadow_set_handle, &output, NULL, "dd", (int)state))
9947 int output;
9949 if (!acpi_evalf(lcdshadow_get_handle, &output, NULL, "dd", 0))
9952 priv->hw_state = priv->sw_state = output & 0x1;
9963 int output;
9970 if (!acpi_evalf(lcdshadow_get_handle, &output, NULL, "dd", 0))
9973 if (!(output & 0x10000))
10066 static int dytc_command(int command, int *output)
10074 if (!acpi_evalf(dytc_handle, output, NULL, "dd", command))
10081 int output, err;
10084 err = dytc_command(DYTC_CMD_GET, &output);
10089 *state = output & BIT(DYTC_GET_LAPMODE_BIT) ? true : false;
10096 int output;
10101 if (!acpi_evalf(psensor_handle, &output, NULL, "d"))
10104 *present = output & BIT(PALMSENSOR_PRESENT_BIT) ? true : false;
10105 *state = output & BIT(PALMSENSOR_ON_BIT) ? true : false;
10386 static int dytc_cql_command(int command, int *output)
10392 err = dytc_command(DYTC_CMD_GET, output);
10396 cur_funcmode = (*output >> DYTC_GET_FUNCTION_BIT) & 0xF;
10408 cmd_err = dytc_command(command, output);
10427 int output;
10446 err = dytc_cql_command(DYTC_CMD_RESET, &output);
10452 &output);
10457 err = dytc_command(DYTC_SET_COMMAND(DYTC_FUNCTION_PSC, perfmode, 1), &output);
10475 int output = 0, err = 0;
10481 err = dytc_command(DYTC_CMD_MMC_GET, &output);
10483 err = dytc_cql_command(DYTC_CMD_GET, &output);
10486 err = dytc_command(DYTC_CMD_GET, &output);
10488 funcmode = (output >> DYTC_GET_FUNCTION_BIT) & 0xF;
10496 perfmode = (output >> DYTC_GET_MODE_BIT) & 0xF;
10511 int err, output;
10518 err = dytc_command(DYTC_CMD_QUERY, &output);
10522 if (output & BIT(DYTC_QUERY_ENABLE_BIT))
10523 dytc_version = (output >> DYTC_QUERY_REV_BIT) & 0xF;
10557 err = dytc_command(DYTC_CMD_MMC_GET, &output);
10558 if (!err && ((output & DYTC_ERR_MASK) == DYTC_ERR_SUCCESS))
10634 int output;
10641 if (!acpi_evalf(sskl_handle, &output, NULL, "dd", command))
10647 static int get_keyboard_lang(int *output)
10667 *output = kbd_lang;
10677 int output, err, i, len = 0;
10679 err = get_keyboard_lang(&output);
10687 if (output == keyboard_lang_data[i].lang_code) {
10753 int err, output;
10755 err = get_keyboard_lang(&output);
10774 static int dprc_command(int command, int *output)
10783 if (!acpi_evalf(dprc_handle, output, NULL, "dd", command))
10791 if (*output & METHOD_ERR)
10799 int output, err;
10802 err = dprc_command(DPRC_GET_WWAN_ANTENNA_TYPE, &output);
10806 if (output & DPRC_WWAN_ANTENNA_TYPE_A_BIT)
10808 else if (output & DPRC_WWAN_ANTENNA_TYPE_B_BIT)