Commit 6c2d8b5d authored by Tobias Klauser's avatar Tobias Klauser Committed by Linus Torvalds

[PATCH] sound/sparc/dbri: Use ARRAY_SIZE macro

Use ARRAY_SIZE macro instead of sizeof(x)/sizeof(x[0])
Signed-off-by: default avatarTobias Klauser <tklauser@distanz.ch>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 2ad3479d
...@@ -2412,8 +2412,6 @@ static struct snd_kcontrol_new dbri_controls[] __devinitdata = { ...@@ -2412,8 +2412,6 @@ static struct snd_kcontrol_new dbri_controls[] __devinitdata = {
CS4215_SINGLE("Mic boost", 4, 4, 1, 1) CS4215_SINGLE("Mic boost", 4, 4, 1, 1)
}; };
#define NUM_CS4215_CONTROLS (sizeof(dbri_controls)/sizeof(struct snd_kcontrol_new))
static int __init snd_dbri_mixer(struct snd_dbri * dbri) static int __init snd_dbri_mixer(struct snd_dbri * dbri)
{ {
struct snd_card *card; struct snd_card *card;
...@@ -2424,7 +2422,7 @@ static int __init snd_dbri_mixer(struct snd_dbri * dbri) ...@@ -2424,7 +2422,7 @@ static int __init snd_dbri_mixer(struct snd_dbri * dbri)
card = dbri->card; card = dbri->card;
strcpy(card->mixername, card->shortname); strcpy(card->mixername, card->shortname);
for (idx = 0; idx < NUM_CS4215_CONTROLS; idx++) { for (idx = 0; idx < ARRAY_SIZE(dbri_controls); idx++) {
if ((err = snd_ctl_add(card, if ((err = snd_ctl_add(card,
snd_ctl_new1(&dbri_controls[idx], dbri))) < 0) snd_ctl_new1(&dbri_controls[idx], dbri))) < 0)
return err; return err;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment