Skip to content

Commit

Permalink
ALSA: intel8x0m: append 'm' to "r_intel8x0"
Browse files Browse the repository at this point in the history
Appending an 'm' will distinguish it from a similar struct in intel8x0.c

Signed-off-by: Paul Bolle <[email protected]>
Signed-off-by: Takashi Iwai <[email protected]>
  • Loading branch information
pebolle authored and tiwai committed Mar 11, 2011
1 parent a6e8509 commit 966a7f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sound/pci/intel8x0m.c
Original file line number Diff line number Diff line change
Expand Up @@ -1109,7 +1109,7 @@ struct ich_reg_info {
static int __devinit snd_intel8x0m_create(struct snd_card *card,
struct pci_dev *pci,
unsigned long device_type,
struct intel8x0m ** r_intel8x0)
struct intel8x0m **r_intel8x0m)
{
struct intel8x0m *chip;
int err;
Expand All @@ -1125,7 +1125,7 @@ static int __devinit snd_intel8x0m_create(struct snd_card *card,
};
struct ich_reg_info *tbl;

*r_intel8x0 = NULL;
*r_intel8x0m = NULL;

if ((err = pci_enable_device(pci)) < 0)
return err;
Expand Down Expand Up @@ -1238,7 +1238,7 @@ static int __devinit snd_intel8x0m_create(struct snd_card *card,

snd_card_set_dev(card, &pci->dev);

*r_intel8x0 = chip;
*r_intel8x0m = chip;
return 0;
}

Expand Down

0 comments on commit 966a7f0

Please sign in to comment.