Skip to content

Commit

Permalink
of: device: Export of_device_{get_modalias, uvent_modalias} to modules
Browse files Browse the repository at this point in the history
The ULPI bus can be built as a module, and it will soon be
calling these functions when it supports probing devices from DT.
Export them so they can be used by the ULPI module.

Acked-by: Rob Herring <[email protected]>
Cc: <[email protected]>
Signed-off-by: Stephen Boyd <[email protected]>
Signed-off-by: Peter Chen <[email protected]>
  • Loading branch information
bebarino authored and Peter Chen committed Jan 20, 2017
1 parent 9c829c0 commit 7a3b7cd
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions drivers/of/device.c
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ ssize_t of_device_get_modalias(struct device *dev, char *str, ssize_t len)

return tsize;
}
EXPORT_SYMBOL_GPL(of_device_get_modalias);

int of_device_request_module(struct device *dev)
{
Expand Down Expand Up @@ -310,3 +311,4 @@ int of_device_uevent_modalias(struct device *dev, struct kobj_uevent_env *env)

return 0;
}
EXPORT_SYMBOL_GPL(of_device_uevent_modalias);

0 comments on commit 7a3b7cd

Please sign in to comment.