Merge tag 's390-6.10-7' of git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux
[linux-2.6-block.git] / sound / aoa / soundbus / sysfs.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
f3d9478b 2#include <linux/kernel.h>
192a7122 3#include <linux/of.h>
f3d9478b
JB
4#include <linux/stat.h>
5/* FIX UP */
6#include "soundbus.h"
7
f3d9478b
JB
8static ssize_t modalias_show(struct device *dev, struct device_attribute *attr,
9 char *buf)
10{
11 struct soundbus_dev *sdev = to_soundbus_device(dev);
2dc11581 12 struct platform_device *of = &sdev->ofdev;
f3d9478b 13
0980bb1f
TI
14 if (*sdev->modalias)
15 return sysfs_emit(buf, "%s\n", sdev->modalias);
16 else
17 return sysfs_emit(buf, "of:N%pOFn%c%s\n",
18 of->dev.of_node, 'T',
19 of_node_get_device_type(of->dev.of_node));
f3d9478b 20}
a038b979 21static DEVICE_ATTR_RO(modalias);
f3d9478b 22
192a7122
RH
23static ssize_t name_show(struct device *dev,
24 struct device_attribute *attr, char *buf)
25{
26 struct soundbus_dev *sdev = to_soundbus_device(dev);
27 struct platform_device *of = &sdev->ofdev;
28
0980bb1f 29 return sysfs_emit(buf, "%pOFn\n", of->dev.of_node);
192a7122 30}
a038b979 31static DEVICE_ATTR_RO(name);
192a7122
RH
32
33static ssize_t type_show(struct device *dev,
34 struct device_attribute *attr, char *buf)
35{
36 struct soundbus_dev *sdev = to_soundbus_device(dev);
37 struct platform_device *of = &sdev->ofdev;
38
0980bb1f 39 return sysfs_emit(buf, "%s\n", of_node_get_device_type(of->dev.of_node));
192a7122 40}
a038b979 41static DEVICE_ATTR_RO(type);
f3d9478b 42
a038b979
QL
43struct attribute *soundbus_dev_attrs[] = {
44 &dev_attr_name.attr,
45 &dev_attr_type.attr,
46 &dev_attr_modalias.attr,
47 NULL,
f3d9478b 48};