diff options
author | Takashi Sakamoto <o-takashi@sakamocchi.jp> | 2015-09-19 04:22:01 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2015-09-29 12:50:23 +0200 |
commit | 49c7b3fcd9f0a0125e8cd8212d5576382198eeb2 (patch) | |
tree | e01aa3798507d69328550d5a2c2b1759dfd4cfb8 /sound/firewire/amdtp-stream.c | |
parent | ALSA: firewire-lib: rename PCM format helper function (diff) | |
download | linux-49c7b3fcd9f0a0125e8cd8212d5576382198eeb2.tar.xz linux-49c7b3fcd9f0a0125e8cd8212d5576382198eeb2.zip |
ALSA: firewire-lib: rename macros with AM824 prefix
This commit renames some macros just related to AM824 format. In later
commit, they're moved to AM824 layer.
Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/firewire/amdtp-stream.c')
-rw-r--r-- | sound/firewire/amdtp-stream.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/firewire/amdtp-stream.c b/sound/firewire/amdtp-stream.c index 245002e9b0cb..c61e0ec5c0f5 100644 --- a/sound/firewire/amdtp-stream.c +++ b/sound/firewire/amdtp-stream.c @@ -202,8 +202,8 @@ int amdtp_stream_set_parameters(struct amdtp_stream *s, midi_channels = DIV_ROUND_UP(midi_ports, 8); if (WARN_ON(amdtp_stream_running(s)) || - WARN_ON(pcm_channels > AMDTP_MAX_CHANNELS_FOR_PCM) || - WARN_ON(midi_channels > AMDTP_MAX_CHANNELS_FOR_MIDI)) + WARN_ON(pcm_channels > AM824_MAX_CHANNELS_FOR_PCM) || + WARN_ON(midi_channels > AM824_MAX_CHANNELS_FOR_MIDI)) return -EINVAL; for (sfc = 0; sfc < ARRAY_SIZE(amdtp_rate_table); ++sfc) { |