Commit 81fc5ad5 authored by Takashi Sakamoto's avatar Takashi Sakamoto Committed by Takashi Iwai

ALSA: dice: suppress checkpatch.pl warnings

The checkpatch.pl generates some warnings due to:
 - C99 comment
 - a line over 80 characters
 - min() for parameters with different types
Signed-off-by: default avatarTakashi Sakamoto <o-takashi@sakamocchi.jp>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 50314663
...@@ -133,7 +133,7 @@ static inline u64 global_address(struct dice *dice, unsigned int offset) ...@@ -133,7 +133,7 @@ static inline u64 global_address(struct dice *dice, unsigned int offset)
return DICE_PRIVATE_SPACE + dice->global_offset + offset; return DICE_PRIVATE_SPACE + dice->global_offset + offset;
} }
// TODO: rx index /* TODO: rx index */
static inline u64 rx_address(struct dice *dice, unsigned int offset) static inline u64 rx_address(struct dice *dice, unsigned int offset)
{ {
return DICE_PRIVATE_SPACE + dice->rx_offset + offset; return DICE_PRIVATE_SPACE + dice->rx_offset + offset;
...@@ -721,13 +721,14 @@ static long dice_hwdep_read(struct snd_hwdep *hwdep, char __user *buf, ...@@ -721,13 +721,14 @@ static long dice_hwdep_read(struct snd_hwdep *hwdep, char __user *buf,
event.lock_status.status = dice->dev_lock_count > 0; event.lock_status.status = dice->dev_lock_count > 0;
dice->dev_lock_changed = false; dice->dev_lock_changed = false;
count = min(count, (long)sizeof(event.lock_status)); count = min_t(long, count, sizeof(event.lock_status));
} else { } else {
event.dice_notification.type = SNDRV_FIREWIRE_EVENT_DICE_NOTIFICATION; event.dice_notification.type =
SNDRV_FIREWIRE_EVENT_DICE_NOTIFICATION;
event.dice_notification.notification = dice->notification_bits; event.dice_notification.notification = dice->notification_bits;
dice->notification_bits = 0; dice->notification_bits = 0;
count = min(count, (long)sizeof(event.dice_notification)); count = min_t(long, count, sizeof(event.dice_notification));
} }
spin_unlock_irq(&dice->lock); spin_unlock_irq(&dice->lock);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment