Merge remote-tracking branches 'asoc/fix/da7219-pops' and 'asoc/fix/qcom' into asoc...
[GitHub/moto-9609/android_kernel_motorola_exynos9610.git] / sound / aoa / soundbus / sysfs.c
CommitLineData
f3d9478b
JB
1#include <linux/kernel.h>
2#include <linux/stat.h>
3/* FIX UP */
4#include "soundbus.h"
5
6#define soundbus_config_of_attr(field, format_string) \
7static ssize_t \
8field##_show (struct device *dev, struct device_attribute *attr, \
9 char *buf) \
10{ \
11 struct soundbus_dev *mdev = to_soundbus_device (dev); \
61c7a080 12 return sprintf (buf, format_string, mdev->ofdev.dev.of_node->field); \
f3d9478b
JB
13}
14
15static ssize_t modalias_show(struct device *dev, struct device_attribute *attr,
16 char *buf)
17{
18 struct soundbus_dev *sdev = to_soundbus_device(dev);
2dc11581 19 struct platform_device *of = &sdev->ofdev;
f3d9478b
JB
20 int length;
21
22 if (*sdev->modalias) {
23 strlcpy(buf, sdev->modalias, sizeof(sdev->modalias) + 1);
24 strcat(buf, "\n");
25 length = strlen(buf);
26 } else {
27 length = sprintf(buf, "of:N%sT%s\n",
61c7a080 28 of->dev.of_node->name, of->dev.of_node->type);
f3d9478b
JB
29 }
30
31 return length;
32}
a038b979 33static DEVICE_ATTR_RO(modalias);
f3d9478b
JB
34
35soundbus_config_of_attr (name, "%s\n");
a038b979 36static DEVICE_ATTR_RO(name);
f3d9478b 37soundbus_config_of_attr (type, "%s\n");
a038b979 38static DEVICE_ATTR_RO(type);
f3d9478b 39
a038b979
QL
40struct attribute *soundbus_dev_attrs[] = {
41 &dev_attr_name.attr,
42 &dev_attr_type.attr,
43 &dev_attr_modalias.attr,
44 NULL,
f3d9478b 45};