mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-08 03:40:35 +09:00
ANDROID: driver: gpu: drm: fix export symbol types
In commit 310dd4fe83 ("ANDROID: driver: gpu: drm: add notifier for
panel related events") a number of new symbols were exported, but they
should have been set as a _GPL symbol.
Fix this up by properly changing the export types.
Bug: 139653858
Cc: Shashank Babu Chinta Venkata <sbchin@codeaurora.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
Change-Id: I54dbc1f4d41739ab19040563966a6505897734fb
This commit is contained in:
@@ -175,21 +175,21 @@ int drm_panel_notifier_register(struct drm_panel *panel,
|
||||
{
|
||||
return blocking_notifier_chain_register(&panel->nh, nb);
|
||||
}
|
||||
EXPORT_SYMBOL(drm_panel_notifier_register);
|
||||
EXPORT_SYMBOL_GPL(drm_panel_notifier_register);
|
||||
|
||||
int drm_panel_notifier_unregister(struct drm_panel *panel,
|
||||
struct notifier_block *nb)
|
||||
{
|
||||
return blocking_notifier_chain_unregister(&panel->nh, nb);
|
||||
}
|
||||
EXPORT_SYMBOL(drm_panel_notifier_unregister);
|
||||
EXPORT_SYMBOL_GPL(drm_panel_notifier_unregister);
|
||||
|
||||
int drm_panel_notifier_call_chain(struct drm_panel *panel,
|
||||
unsigned long val, void *v)
|
||||
{
|
||||
return blocking_notifier_call_chain(&panel->nh, val, v);
|
||||
}
|
||||
EXPORT_SYMBOL(drm_panel_notifier_call_chain);
|
||||
EXPORT_SYMBOL_GPL(drm_panel_notifier_call_chain);
|
||||
|
||||
MODULE_AUTHOR("Thierry Reding <treding@nvidia.com>");
|
||||
MODULE_DESCRIPTION("DRM panel infrastructure");
|
||||
|
||||
Reference in New Issue
Block a user