Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
b0b7b8ea
Commit
b0b7b8ea
authored
Nov 11, 2005
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge master.kernel.org:/home/rmk/linux-2.6-mmc
parents
c050970a
402771c7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
drivers/mmc/wbsd.c
drivers/mmc/wbsd.c
+4
-3
No files found.
drivers/mmc/wbsd.c
View file @
b0b7b8ea
...
...
@@ -42,7 +42,7 @@
#include "wbsd.h"
#define DRIVER_NAME "wbsd"
#define DRIVER_VERSION "1.
4
"
#define DRIVER_VERSION "1.
5
"
#ifdef CONFIG_MMC_DEBUG
#define DBG(x...) \
...
...
@@ -2042,7 +2042,7 @@ static struct device_driver wbsd_driver = {
.
name
=
DRIVER_NAME
,
.
bus
=
&
platform_bus_type
,
.
probe
=
wbsd_probe
,
.
remove
=
wbsd_remove
,
.
remove
=
__devexit_p
(
wbsd_remove
)
,
.
suspend
=
wbsd_suspend
,
.
resume
=
wbsd_resume
,
...
...
@@ -2054,7 +2054,7 @@ static struct pnp_driver wbsd_pnp_driver = {
.
name
=
DRIVER_NAME
,
.
id_table
=
pnp_dev_table
,
.
probe
=
wbsd_pnp_probe
,
.
remove
=
wbsd_pnp_remove
,
.
remove
=
__devexit_p
(
wbsd_pnp_remove
)
,
};
#endif
/* CONFIG_PNP */
...
...
@@ -2127,6 +2127,7 @@ module_param(irq, uint, 0444);
module_param
(
dma
,
int
,
0444
);
MODULE_LICENSE
(
"GPL"
);
MODULE_AUTHOR
(
"Pierre Ossman <drzeus@drzeus.cx>"
);
MODULE_DESCRIPTION
(
"Winbond W83L51xD SD/MMC card interface driver"
);
MODULE_VERSION
(
DRIVER_VERSION
);
...
...
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