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>
 
        return glink;
 }
+EXPORT_SYMBOL_GPL(qcom_glink_native_probe);
 
 static int qcom_glink_remove_device(struct device *dev, void *data)
 {
        spin_unlock_irqrestore(&glink->idr_lock, flags);
        mbox_free_channel(glink->mbox_chan);
 }
+EXPORT_SYMBOL_GPL(qcom_glink_native_remove);
 
 void qcom_glink_native_unregister(struct qcom_glink *glink)
 {
        device_unregister(glink->dev);
 }
+EXPORT_SYMBOL_GPL(qcom_glink_native_unregister);