diff options
| author | Michael Hennerich <[email protected]> | 2009-12-21 11:41:08 -0500 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2009-12-23 11:23:44 -0800 |
| commit | 0787fdf70ba4c41a3350096ebaa347a17e900385 (patch) | |
| tree | 75a4bcdca005253e6b9b4e901f29672ef1352f5f | |
| parent | 99b28f1b4126582f87ce454d4affb823bddf2cd8 (diff) | |
Driver core: export platform_device_register_data as a GPL symbol
This allows MFD's to register/bind drivers for their sub devices while
still being compiled as a module.
Signed-off-by: Michael Hennerich <[email protected]>
Signed-off-by: Mike Frysinger <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
| -rw-r--r-- | drivers/base/platform.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/base/platform.c b/drivers/base/platform.c index 9d2ee25deaf5..58efaf2f1259 100644 --- a/drivers/base/platform.c +++ b/drivers/base/platform.c @@ -441,6 +441,7 @@ error: platform_device_put(pdev); return ERR_PTR(retval); } +EXPORT_SYMBOL_GPL(platform_device_register_data); static int platform_drv_probe(struct device *_dev) { |