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
nexedi
linux
Commits
982d6287
Commit
982d6287
authored
Oct 25, 2013
by
Mark Brown
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'spi/topic/probe' into spi-next
parents
7e0ae740
1d82d0c2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
4 deletions
+7
-4
drivers/spi/spi-au1550.c
drivers/spi/spi-au1550.c
+2
-1
drivers/spi/spi-omap-uwire.c
drivers/spi/spi-omap-uwire.c
+3
-2
drivers/spi/spi-txx9.c
drivers/spi/spi-txx9.c
+2
-1
No files found.
drivers/spi/spi-au1550.c
View file @
982d6287
...
...
@@ -985,6 +985,7 @@ static int au1550_spi_remove(struct platform_device *pdev)
MODULE_ALIAS
(
"platform:au1550-spi"
);
static
struct
platform_driver
au1550_spi_drv
=
{
.
probe
=
au1550_spi_probe
,
.
remove
=
au1550_spi_remove
,
.
driver
=
{
.
name
=
"au1550-spi"
,
...
...
@@ -1004,7 +1005,7 @@ static int __init au1550_spi_init(void)
printk
(
KERN_ERR
"au1550-spi: cannot add memory"
"dbdma device
\n
"
);
}
return
platform_driver_
probe
(
&
au1550_spi_drv
,
au1550_spi_probe
);
return
platform_driver_
register
(
&
au1550_spi_drv
);
}
module_init
(
au1550_spi_init
);
...
...
drivers/spi/spi-omap-uwire.c
View file @
982d6287
...
...
@@ -557,7 +557,8 @@ static struct platform_driver uwire_driver = {
.
name
=
"omap_uwire"
,
.
owner
=
THIS_MODULE
,
},
.
remove
=
uwire_remove
,
.
probe
=
uwire_probe
,
.
remove
=
uwire_remove
,
// suspend ... unuse ck
// resume ... use ck
};
...
...
@@ -579,7 +580,7 @@ static int __init omap_uwire_init(void)
omap_writel
(
val
|
0x00AAA000
,
OMAP7XX_IO_CONF_9
);
}
return
platform_driver_
probe
(
&
uwire_driver
,
uwire_probe
);
return
platform_driver_
register
(
&
uwire_driver
);
}
static
void
__exit
omap_uwire_exit
(
void
)
...
...
drivers/spi/spi-txx9.c
View file @
982d6287
...
...
@@ -438,6 +438,7 @@ static int txx9spi_remove(struct platform_device *dev)
MODULE_ALIAS
(
"platform:spi_txx9"
);
static
struct
platform_driver
txx9spi_driver
=
{
.
probe
=
txx9spi_probe
,
.
remove
=
txx9spi_remove
,
.
driver
=
{
.
name
=
"spi_txx9"
,
...
...
@@ -447,7 +448,7 @@ static struct platform_driver txx9spi_driver = {
static
int
__init
txx9spi_init
(
void
)
{
return
platform_driver_
probe
(
&
txx9spi_driver
,
txx9spi_probe
);
return
platform_driver_
register
(
&
txx9spi_driver
);
}
subsys_initcall
(
txx9spi_init
);
...
...
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