aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorClemens Ladisch <clemens@ladisch.de>2012-01-22 10:46:23 -0500
committerClemens Ladisch <clemens@ladisch.de>2013-10-20 16:07:57 -0400
commited7e48264cfd3b000ab8dd100e6aa4c1447dd93a (patch)
tree8f42a318fa1addb7ccf61e01bc09e836b166065a /sound
parent61b8cf0222b256b4f793d99c8bdc9b216d067a76 (diff)
ALSA: dice: dice_proc_read: remove wrong typecast
Remove a wrong typecast that resulted from a copy-and-paste error. Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
Diffstat (limited to 'sound')
-rw-r--r--sound/firewire/dice.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sound/firewire/dice.c b/sound/firewire/dice.c
index 25a96362e1aa..5f0f102cf5f9 100644
--- a/sound/firewire/dice.c
+++ b/sound/firewire/dice.c
@@ -1053,8 +1053,7 @@ static void dice_proc_read(struct snd_info_entry *entry,
1053 break; 1053 break;
1054 snd_iprintf(buffer, "rx %u:\n", stream); 1054 snd_iprintf(buffer, "rx %u:\n", stream);
1055 snd_iprintf(buffer, " iso channel: %d\n", (int)buf.rx.iso); 1055 snd_iprintf(buffer, " iso channel: %d\n", (int)buf.rx.iso);
1056 snd_iprintf(buffer, " sequence start: %u\n", 1056 snd_iprintf(buffer, " sequence start: %u\n", buf.rx.seq_start);
1057 (int)buf.rx.seq_start);
1058 snd_iprintf(buffer, " audio channels: %u\n", 1057 snd_iprintf(buffer, " audio channels: %u\n",
1059 buf.rx.number_audio); 1058 buf.rx.number_audio);
1060 snd_iprintf(buffer, " midi ports: %u\n", buf.rx.number_midi); 1059 snd_iprintf(buffer, " midi ports: %u\n", buf.rx.number_midi);