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
3c36a837
Commit
3c36a837
authored
Nov 26, 2008
by
Krzysztof Hałasa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
IXP4xx: Silence section mismatch warning in Ethernet driver.
Signed-off-by:
Krzysztof Hałasa
<
khc@pm.waw.pl
>
parent
ae2754a9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
drivers/net/arm/ixp4xx_eth.c
drivers/net/arm/ixp4xx_eth.c
+3
-3
No files found.
drivers/net/arm/ixp4xx_eth.c
View file @
3c36a837
...
...
@@ -1231,7 +1231,7 @@ static int __devexit eth_remove_one(struct platform_device *pdev)
return
0
;
}
static
struct
platform_driver
drv
=
{
static
struct
platform_driver
ixp4xx_eth_driver
=
{
.
driver
.
name
=
DRV_NAME
,
.
probe
=
eth_init_one
,
.
remove
=
eth_remove_one
,
...
...
@@ -1247,12 +1247,12 @@ static int __init eth_init_module(void)
mdio_regs
=
(
struct
eth_regs
__iomem
*
)
IXP4XX_EthB_BASE_VIRT
;
__raw_writel
(
DEFAULT_CORE_CNTRL
,
&
mdio_regs
->
core_control
);
return
platform_driver_register
(
&
drv
);
return
platform_driver_register
(
&
ixp4xx_eth_driver
);
}
static
void
__exit
eth_cleanup_module
(
void
)
{
platform_driver_unregister
(
&
drv
);
platform_driver_unregister
(
&
ixp4xx_eth_driver
);
}
MODULE_AUTHOR
(
"Krzysztof Halasa"
);
...
...
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