diff --git a/channels/chan_console.c b/channels/chan_console.c
index b14e797ac01b6fed4e355fb519699e2314a35f82..38bd3e61c7efed8f355450bf3b32b4b3ef6442c9 100644
--- a/channels/chan_console.c
+++ b/channels/chan_console.c
@@ -801,7 +801,9 @@ static char *cli_list_devices(struct ast_cli_entry *e, int cmd, struct ast_cli_a
 		const PaDeviceInfo *dev = Pa_GetDeviceInfo(index);
 		if (!dev)
 			continue;
-		ast_cli(a->fd, "Device Name: %s\n", dev->name);
+		ast_cli(a->fd, "Device Name: %s %s %s\n", dev->name,
+			dev->maxInputChannels ? "(Input)" : "",
+			dev->maxOutputChannels ? "(Output)" : "");
 		if (index == def_input)
 			ast_cli(a->fd, "    ---> Default Input Device\n");
 		if (index == def_output)