Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a2794087 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "ion: Add EXPORT_SYMBOL for buffer securing APIs"

parents e2082402 a0bc2544
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -227,7 +227,7 @@ int msm_ion_secure_buffer(struct ion_client *client, struct ion_handle *handle,
out:
	return ret;
}

EXPORT_SYMBOL(msm_ion_secure_buffer);

static void msm_secure_buffer_release(struct kref *kref)
{
@@ -280,6 +280,7 @@ int msm_ion_unsecure_buffer(struct ion_client *client,
out:
	return ret;
}
EXPORT_SYMBOL(msm_ion_unsecure_buffer);

#define MAKE_CP_VERSION(major, minor, patch) \
	(((major & 0x3FF) << 22) | ((minor & 0x3FF) << 12) | (patch & 0xFFF))