media: staging: atomisp: Remove dead code for MID (#2)
[linux-2.6/btrfs-unstable.git] / drivers / macintosh / macio_sysfs.c
blob2445274f7e4bd1d21f0591e5db2d4f3ac3526a40
1 #include <linux/kernel.h>
2 #include <linux/stat.h>
3 #include <asm/macio.h>
6 #define macio_config_of_attr(field, format_string) \
7 static ssize_t \
8 field##_show (struct device *dev, struct device_attribute *attr, \
9 char *buf) \
10 { \
11 struct macio_dev *mdev = to_macio_device (dev); \
12 return sprintf (buf, format_string, mdev->ofdev.dev.of_node->field); \
13 } \
14 static DEVICE_ATTR_RO(field);
16 static ssize_t
17 compatible_show (struct device *dev, struct device_attribute *attr, char *buf)
19 struct platform_device *of;
20 const char *compat;
21 int cplen;
22 int length = 0;
24 of = &to_macio_device (dev)->ofdev;
25 compat = of_get_property(of->dev.of_node, "compatible", &cplen);
26 if (!compat) {
27 *buf = '\0';
28 return 0;
30 while (cplen > 0) {
31 int l;
32 length += sprintf (buf, "%s\n", compat);
33 buf += length;
34 l = strlen (compat) + 1;
35 compat += l;
36 cplen -= l;
39 return length;
41 static DEVICE_ATTR_RO(compatible);
43 static ssize_t modalias_show (struct device *dev, struct device_attribute *attr,
44 char *buf)
46 return of_device_modalias(dev, buf, PAGE_SIZE);
49 static ssize_t devspec_show(struct device *dev,
50 struct device_attribute *attr, char *buf)
52 struct platform_device *ofdev;
54 ofdev = to_platform_device(dev);
55 return sprintf(buf, "%s\n", ofdev->dev.of_node->full_name);
57 static DEVICE_ATTR_RO(modalias);
58 static DEVICE_ATTR_RO(devspec);
60 macio_config_of_attr (name, "%s\n");
61 macio_config_of_attr (type, "%s\n");
63 static struct attribute *macio_dev_attrs[] = {
64 &dev_attr_name.attr,
65 &dev_attr_type.attr,
66 &dev_attr_compatible.attr,
67 &dev_attr_modalias.attr,
68 &dev_attr_devspec.attr,
69 NULL,
72 static const struct attribute_group macio_dev_group = {
73 .attrs = macio_dev_attrs,
76 const struct attribute_group *macio_dev_groups[] = {
77 &macio_dev_group,
78 NULL,