aboutsummaryrefslogtreecommitdiffstats
path: root/sound/ppc
diff options
context:
space:
mode:
Diffstat (limited to 'sound/ppc')
-rw-r--r--sound/ppc/beep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/ppc/beep.c b/sound/ppc/beep.c
index a1aa89f2faf3..566b5ab9d4e8 100644
--- a/sound/ppc/beep.c
+++ b/sound/ppc/beep.c
@@ -236,8 +236,8 @@ int __init snd_pmac_attach_beep(struct snd_pmac *chip)
236 input_dev->id.product = 0x0001; 236 input_dev->id.product = 0x0001;
237 input_dev->id.version = 0x0100; 237 input_dev->id.version = 0x0100;
238 238
239 input_dev->evbit[0] = BIT(EV_SND); 239 input_dev->evbit[0] = BIT_MASK(EV_SND);
240 input_dev->sndbit[0] = BIT(SND_BELL) | BIT(SND_TONE); 240 input_dev->sndbit[0] = BIT_MASK(SND_BELL) | BIT_MASK(SND_TONE);
241 input_dev->event = snd_pmac_beep_event; 241 input_dev->event = snd_pmac_beep_event;
242 input_dev->dev.parent = &chip->pdev->dev; 242 input_dev->dev.parent = &chip->pdev->dev;
243 input_set_drvdata(input_dev, chip); 243 input_set_drvdata(input_dev, chip);