diff options
Diffstat (limited to 'sound/isa/sb/sb_common.c')
-rw-r--r-- | sound/isa/sb/sb_common.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/isa/sb/sb_common.c b/sound/isa/sb/sb_common.c index d63c1af550de..b432d9ae874b 100644 --- a/sound/isa/sb/sb_common.c +++ b/sound/isa/sb/sb_common.c | |||
@@ -51,7 +51,7 @@ int snd_sbdsp_command(struct snd_sb *chip, unsigned char val) | |||
51 | outb(val, SBP(chip, COMMAND)); | 51 | outb(val, SBP(chip, COMMAND)); |
52 | return 1; | 52 | return 1; |
53 | } | 53 | } |
54 | snd_printd("%s [0x%lx]: timeout (0x%x)\n", __FUNCTION__, chip->port, val); | 54 | snd_printd("%s [0x%lx]: timeout (0x%x)\n", __func__, chip->port, val); |
55 | return 0; | 55 | return 0; |
56 | } | 56 | } |
57 | 57 | ||
@@ -68,7 +68,7 @@ int snd_sbdsp_get_byte(struct snd_sb *chip) | |||
68 | return val; | 68 | return val; |
69 | } | 69 | } |
70 | } | 70 | } |
71 | snd_printd("%s [0x%lx]: timeout\n", __FUNCTION__, chip->port); | 71 | snd_printd("%s [0x%lx]: timeout\n", __func__, chip->port); |
72 | return -ENODEV; | 72 | return -ENODEV; |
73 | } | 73 | } |
74 | 74 | ||
@@ -87,7 +87,7 @@ int snd_sbdsp_reset(struct snd_sb *chip) | |||
87 | else | 87 | else |
88 | break; | 88 | break; |
89 | } | 89 | } |
90 | snd_printdd("%s [0x%lx] failed...\n", __FUNCTION__, chip->port); | 90 | snd_printdd("%s [0x%lx] failed...\n", __func__, chip->port); |
91 | return -ENODEV; | 91 | return -ENODEV; |
92 | } | 92 | } |
93 | 93 | ||