Commit b203dbab authored by Takashi Iwai's avatar Takashi Iwai

ALSA: core: Fix missing card sysfs contents

While moving the card device into struct snd_card, the reference to
the assigned card in sysfs show/store callbacks were forgotten to be
refreshed, still accessing to the no longer used drvdata.  Fix these
places to refer correctly via container_of().

Also, remove the superfluous NULL checks since it's guaranteed to be
non-NULL now.

Fixes: 8bfb181c ('ALSA: Embed card device into struct snd_card')
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent dff86f86
...@@ -624,15 +624,15 @@ static ssize_t ...@@ -624,15 +624,15 @@ static ssize_t
card_id_show_attr(struct device *dev, card_id_show_attr(struct device *dev,
struct device_attribute *attr, char *buf) struct device_attribute *attr, char *buf)
{ {
struct snd_card *card = dev_get_drvdata(dev); struct snd_card *card = container_of(dev, struct snd_card, card_dev);
return snprintf(buf, PAGE_SIZE, "%s\n", card ? card->id : "(null)"); return snprintf(buf, PAGE_SIZE, "%s\n", card->id);
} }
static ssize_t static ssize_t
card_id_store_attr(struct device *dev, struct device_attribute *attr, card_id_store_attr(struct device *dev, struct device_attribute *attr,
const char *buf, size_t count) const char *buf, size_t count)
{ {
struct snd_card *card = dev_get_drvdata(dev); struct snd_card *card = container_of(dev, struct snd_card, card_dev);
char buf1[sizeof(card->id)]; char buf1[sizeof(card->id)];
size_t copy = count > sizeof(card->id) - 1 ? size_t copy = count > sizeof(card->id) - 1 ?
sizeof(card->id) - 1 : count; sizeof(card->id) - 1 : count;
...@@ -664,8 +664,8 @@ static ssize_t ...@@ -664,8 +664,8 @@ static ssize_t
card_number_show_attr(struct device *dev, card_number_show_attr(struct device *dev,
struct device_attribute *attr, char *buf) struct device_attribute *attr, char *buf)
{ {
struct snd_card *card = dev_get_drvdata(dev); struct snd_card *card = container_of(dev, struct snd_card, card_dev);
return snprintf(buf, PAGE_SIZE, "%i\n", card ? card->number : -1); return snprintf(buf, PAGE_SIZE, "%i\n", card->number);
} }
static DEVICE_ATTR(number, S_IRUGO, card_number_show_attr, NULL); static DEVICE_ATTR(number, S_IRUGO, card_number_show_attr, NULL);
......
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