mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
net: cpmac: fix cpmac driver structure
This patch changes to style of declarattion which follows every driver Signed-off-by: Varka Bhadram <varkab@cdac.in> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
f160a2d0b5
commit
96a8d3c141
1 changed files with 5 additions and 3 deletions
|
@ -1187,9 +1187,11 @@ static int cpmac_remove(struct platform_device *pdev)
|
|||
}
|
||||
|
||||
static struct platform_driver cpmac_driver = {
|
||||
.driver.name = "cpmac",
|
||||
.driver.owner = THIS_MODULE,
|
||||
.probe = cpmac_probe,
|
||||
.driver = {
|
||||
.name = "cpmac",
|
||||
.owner = THIS_MODULE,
|
||||
},
|
||||
.probe = cpmac_probe,
|
||||
.remove = cpmac_remove,
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue