rpmsg: glink: Export symbols from common code
The common code needs to export the probe and remove symbols in order for the SMEM and RPM drivers to access them when compiled as a module. Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
This commit is contained in:
parent
5f5423ffa2
commit
f8ff9777ec
|
@ -1572,6 +1572,7 @@ struct qcom_glink *qcom_glink_native_probe(struct device *dev,
|
||||||
|
|
||||||
return glink;
|
return glink;
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL_GPL(qcom_glink_native_probe);
|
||||||
|
|
||||||
static int qcom_glink_remove_device(struct device *dev, void *data)
|
static int qcom_glink_remove_device(struct device *dev, void *data)
|
||||||
{
|
{
|
||||||
|
@ -1604,8 +1605,10 @@ void qcom_glink_native_remove(struct qcom_glink *glink)
|
||||||
spin_unlock_irqrestore(&glink->idr_lock, flags);
|
spin_unlock_irqrestore(&glink->idr_lock, flags);
|
||||||
mbox_free_channel(glink->mbox_chan);
|
mbox_free_channel(glink->mbox_chan);
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL_GPL(qcom_glink_native_remove);
|
||||||
|
|
||||||
void qcom_glink_native_unregister(struct qcom_glink *glink)
|
void qcom_glink_native_unregister(struct qcom_glink *glink)
|
||||||
{
|
{
|
||||||
device_unregister(glink->dev);
|
device_unregister(glink->dev);
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL_GPL(qcom_glink_native_unregister);
|
||||||
|
|
Loading…
Reference in New Issue