Skip to content

Commit

Permalink
cs5535: Fix section mismatch
Browse files Browse the repository at this point in the history
Fix section mismatch by annotating using variable name suffix.

Signed-off-by: Nikanth Karthikesan <knikanth@suse.de>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
  • Loading branch information
Nikanth Karthikesan authored and Jiri Kosina committed Apr 10, 2011
1 parent 58c2ee4 commit 853a137
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/misc/cs5535-mfgpt.c
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ static int __devinit cs5535_mfgpt_probe(struct platform_device *pdev)
return err;
}

static struct platform_driver cs5535_mfgpt_drv = {
static struct platform_driver cs5535_mfgpt_driver = {
.driver = {
.name = DRV_NAME,
.owner = THIS_MODULE,
Expand All @@ -340,7 +340,7 @@ static struct platform_driver cs5535_mfgpt_drv = {

static int __init cs5535_mfgpt_init(void)
{
return platform_driver_register(&cs5535_mfgpt_drv);
return platform_driver_register(&cs5535_mfgpt_driver);
}

module_init(cs5535_mfgpt_init);
Expand Down

0 comments on commit 853a137

Please sign in to comment.