Lines Matching defs:command

3  * drivers/mfd/si476x-cmd.c -- Subroutines implementing command
183 cause = "Bad command";
242 * si476x_core_send_command() - sends a command to si476x and waits its
246 * @command: command id
247 * @args: command arguments we are sending
258 const u8 command,
279 /* First send the command and its arguments */
280 data[0] = command;
288 "Error while sending command 0x%02x\n",
289 command);
293 /* Set CTS to zero only after the command is send to avoid
297 /* if (unlikely(command == CMD_POWER_DOWN) */
298 if (!wait_event_timeout(core->command,
303 __func__, command);
309 tuner is actually completed the POWER_UP command. To
312 if (unlikely(!core->client->irq && command == CMD_POWER_UP)) {
313 if (!wait_event_timeout(core->command,
325 "Error while reading response for command 0x%02x\n",
326 command);
336 "[CMD 0x%02x] Chip set error flag\n", command);
393 * si476x_core_cmd_func_info() - send 'FUNC_INFO' command to the device
394 * @core: device to send the command to
396 * returned by the command
398 * The command requests the firmware and patch version for currently
427 * si476x_core_cmd_set_property() - send 'SET_PROPERTY' command to the device
428 * @core: device to send the command to
455 * si476x_core_cmd_get_property() - send 'GET_PROPERTY' command to the device
456 * @core: device to send the command to
484 * si476x_core_cmd_dig_audio_pin_cfg() - send 'DIG_AUDIO_PIN_CFG' command to
486 * @core: device to send the command to
543 * @core: - device to send the command to
592 * 'IC_LINK_GPIO_CTL_PIN_CFG' command to the device
593 * @core: - device to send the command to
650 * @core: - device to send the command to
677 * si476x_core_cmd_intb_pin_cfg_a10 - send 'INTB_PIN_CFG' command to the device
678 * @core: - device to send the command to
729 * si476x_core_cmd_am_rsq_status - send 'AM_RSQ_STATUS' command to the
731 * @core: - device to send the command to
733 * relevant to sending the RSQ status command
734 * @report: - all signal quality information returned by the command
735 * (if NULL then the output of the command is ignored)
756 * command can be used to just acknowledge different interrupt
859 * si476x_core_cmd_fm_seek_start - send 'FM_SEEK_START' command to the
861 * @core: - device to send the command to
887 * si476x_core_cmd_fm_rds_status - send 'FM_RDS_STATUS' command to the
889 * @core: - device to send the command to
893 * @mtfifo: if set the command clears RDS receive FIFO
894 * @intack: if set the command clards the RDSINT bit.
895 * @report: - all signal quality information returned by the command
896 * (if NULL then the output of the command is ignored)
917 * Besides getting RDS status information this command can be
1035 * si476x_core_cmd_am_seek_start - send 'FM_SEEK_START' command to the
1037 * @core: - device to send the command to
1183 * command can be used to just acknowledge different interrupt
1237 * command can be used to just acknowledge different interrupt
1292 * command can be used to just acknowledge different interrupt
1544 MODULE_DESCRIPTION("API for command exchange for si476x");