summaryrefslogtreecommitdiff
path: root/backport/compat/compat-3.6.c
diff options
context:
space:
mode:
authorLuis R. Rodriguez <mcgrof@do-not-panic.com>2013-07-12 15:39:13 -0700
committerLuis R. Rodriguez <mcgrof@do-not-panic.com>2013-07-12 16:05:44 -0700
commita29c78e9bc6d0e75935dae13d9bf0687d8880849 (patch)
treef400ac943bbc8239075efed67be6924fdd40f35a /backport/compat/compat-3.6.c
parentbfd4ca310a556b6913091953cd95033743f0ce6b (diff)
backports: Fix and document EXPORT_SYMBOL_GPL() preferencev3.10-2v3.10-1
Upstream commit 1c44a3a37bc973641065d4c15741ac54ee986a6b In terms of project naming the backports project has evolved as follows: compat-wireless --> compat-drivers --> backports All along the design and intent behind the initial project has been to provide a framework for delivery of *upstream* drivers using a backported infrastructure. I've made it clear that in no way shape or form did I ever want any proprietary driver to make use of the framework. As the project has grown I'm not alone with this sentiment so lets document that and also fix a few symbols that have slipped along the way. [mcgrof: backport to linux-3.10.y branch] Signed-off-by: Luis R. Rodriguez <mcgrof@do-not-panic.com>
Diffstat (limited to 'backport/compat/compat-3.6.c')
-rw-r--r--backport/compat/compat-3.6.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/backport/compat/compat-3.6.c b/backport/compat/compat-3.6.c
index 05954d45..53991eea 100644
--- a/backport/compat/compat-3.6.c
+++ b/backport/compat/compat-3.6.c
@@ -45,7 +45,7 @@ int __i2c_transfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num)
return ret;
}
-EXPORT_SYMBOL(__i2c_transfer);
+EXPORT_SYMBOL_GPL(__i2c_transfer);
#endif
/**