diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2009-02-11 23:49:30 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2009-02-12 00:24:11 +0100 |
commit | e930e99500e5bd055270c668cca8bd2f33056895 (patch) | |
tree | 13a892981cfe591ca57f3e5a5d35b97881a813a2 /sound/pci/echoaudio/echo3g_dsp.c | |
parent | ALSA: via82xx - Clean up quirk list (diff) | |
download | linux-e930e99500e5bd055270c668cca8bd2f33056895.tar.xz linux-e930e99500e5bd055270c668cca8bd2f33056895.zip |
ALSA: echoaudio - replace uses of __constant_{endian}
The base versions handle constant folding now.
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/echoaudio/echo3g_dsp.c')
-rw-r--r-- | sound/pci/echoaudio/echo3g_dsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/echoaudio/echo3g_dsp.c b/sound/pci/echoaudio/echo3g_dsp.c index 417e25add82b..57967e580571 100644 --- a/sound/pci/echoaudio/echo3g_dsp.c +++ b/sound/pci/echoaudio/echo3g_dsp.c @@ -56,7 +56,7 @@ static int init_hw(struct echoaudio *chip, u16 device_id, u16 subdevice_id) } chip->comm_page->e3g_frq_register = - __constant_cpu_to_le32((E3G_MAGIC_NUMBER / 48000) - 2); + cpu_to_le32((E3G_MAGIC_NUMBER / 48000) - 2); chip->device_id = device_id; chip->subdevice_id = subdevice_id; chip->bad_board = TRUE; |