-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
wl12xx: add platform data passing support
Add a simple mechanism to pass platform data to the SDIO instances of wl12xx. This way there is no confusion over who owns the 'embedded data', typechecking is preserved, and no possibility for the wrong driver to pick up the data. Originally proposed by Russell King. Signed-off-by: Ohad Ben-Cohen <ohad@wizery.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
- Loading branch information
Ohad Ben-Cohen
authored and
John W. Linville
committed
Sep 21, 2010
1 parent
2cc78ff
commit 61ee700
Showing
4 changed files
with
37 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#include <linux/module.h> | ||
#include <linux/err.h> | ||
#include <linux/wl12xx.h> | ||
|
||
static const struct wl12xx_platform_data *platform_data; | ||
|
||
int __init wl12xx_set_platform_data(const struct wl12xx_platform_data *data) | ||
{ | ||
if (platform_data) | ||
return -EBUSY; | ||
if (!data) | ||
return -EINVAL; | ||
|
||
platform_data = kmemdup(data, sizeof(*data), GFP_KERNEL); | ||
if (!platform_data) | ||
return -ENOMEM; | ||
|
||
return 0; | ||
} | ||
|
||
const struct wl12xx_platform_data *wl12xx_get_platform_data(void) | ||
{ | ||
if (!platform_data) | ||
return ERR_PTR(-ENODEV); | ||
|
||
return platform_data; | ||
} | ||
EXPORT_SYMBOL(wl12xx_get_platform_data); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters