diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-03-03 18:32:18 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2008-04-24 06:00:20 -0400 |
commit | 9bf8e7ddeaf57f1ec534014c447705ad31d5d721 (patch) | |
tree | 6cb4dd4763631bf9f181ba30ffce6ebbfc70073b /sound/oss/trident.h | |
parent | 24982c5f7feca2f4d1b0b562a28b767d93a01ce0 (diff) |
[ALSA] sound: replace remaining __FUNCTION__ occurences
__FUNCTION__ is gcc-specific, use __func__
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/oss/trident.h')
-rw-r--r-- | sound/oss/trident.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/oss/trident.h b/sound/oss/trident.h index 4713b49fc91d..ff30a1d7c2f1 100644 --- a/sound/oss/trident.h +++ b/sound/oss/trident.h | |||
@@ -322,7 +322,7 @@ enum miscint_bits { | |||
322 | #define VALIDATE_MAGIC(FOO,MAG) \ | 322 | #define VALIDATE_MAGIC(FOO,MAG) \ |
323 | ({ \ | 323 | ({ \ |
324 | if (!(FOO) || (FOO)->magic != MAG) { \ | 324 | if (!(FOO) || (FOO)->magic != MAG) { \ |
325 | printk(invalid_magic,__FUNCTION__); \ | 325 | printk(invalid_magic,__func__); \ |
326 | return -ENXIO; \ | 326 | return -ENXIO; \ |
327 | } \ | 327 | } \ |
328 | }) | 328 | }) |