Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
bcfe66e2
Commit
bcfe66e2
authored
Jun 17, 2007
by
Pierre Ossman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sdio: add basic sysfs attributes
Signed-off-by:
Pierre Ossman
<
drzeus@drzeus.cx
>
parent
d59b66c7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
0 deletions
+32
-0
drivers/mmc/core/sdio_bus.c
drivers/mmc/core/sdio_bus.c
+32
-0
No files found.
drivers/mmc/core/sdio_bus.c
View file @
bcfe66e2
...
...
@@ -23,6 +23,37 @@
#define dev_to_sdio_func(d) container_of(d, struct sdio_func, dev)
#define to_sdio_driver(d) container_of(d, struct sdio_driver, drv)
/* show configuration fields */
#define sdio_config_attr(field, format_string) \
static ssize_t \
field##_show(struct device *dev, struct device_attribute *attr, char *buf) \
{ \
struct sdio_func *func; \
\
func = dev_to_sdio_func (dev); \
return sprintf (buf, format_string, func->field); \
}
sdio_config_attr
(
class
,
"0x%02x
\n
"
);
sdio_config_attr
(
vendor
,
"0x%04x
\n
"
);
sdio_config_attr
(
device
,
"0x%04x
\n
"
);
static
ssize_t
modalias_show
(
struct
device
*
dev
,
struct
device_attribute
*
attr
,
char
*
buf
)
{
struct
sdio_func
*
func
=
dev_to_sdio_func
(
dev
);
return
sprintf
(
buf
,
"sdio:c%02Xv%04Xd%04X
\n
"
,
func
->
class
,
func
->
vendor
,
func
->
device
);
}
struct
device_attribute
sdio_dev_attrs
[]
=
{
__ATTR_RO
(
class
),
__ATTR_RO
(
vendor
),
__ATTR_RO
(
device
),
__ATTR_RO
(
modalias
),
__ATTR_NULL
,
};
static
const
struct
sdio_device_id
*
sdio_match_one
(
struct
sdio_func
*
func
,
const
struct
sdio_device_id
*
id
)
{
...
...
@@ -117,6 +148,7 @@ static int sdio_bus_remove(struct device *dev)
static
struct
bus_type
sdio_bus_type
=
{
.
name
=
"sdio"
,
.
dev_attrs
=
sdio_dev_attrs
,
.
match
=
sdio_bus_match
,
.
uevent
=
sdio_bus_uevent
,
.
probe
=
sdio_bus_probe
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment