Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions sound/soc/sof/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ config SND_SOC_SOF_DEBUG_VERBOSE_IPC
bool "SOF verbose IPC logs"
depends on SND_SOC_SOF_DEBUG
help
This option forces move verbose IPC logs, with command types in
human-readable form instead of just 32-bit hex dump. This is useful
This option enables more verbose IPC logs, with command types in
human-readable form instead of just 32-bit hex dumps. This is useful
if you are trying to debug IPC with the DSP firmware.
If unsure select "N".

Expand Down
2 changes: 1 addition & 1 deletion sound/soc/sof/ipc.c
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ int sof_ipc_tx_message(struct snd_sof_ipc *ipc, u32 header,
/* add message to transmit list */
list_add_tail(&msg->list, &ipc->tx_list);

/* schedule the messgae if not busy */
/* schedule the message if not busy */
if (snd_sof_dsp_is_ready(sdev))
schedule_work(&ipc->tx_kwork);

Expand Down