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

Commit 6789de4c authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "ion: msm: Fix several errors in the MSM ION kernel header"

parents 053a2be9 02c55808
Loading
Loading
Loading
Loading
+16 −3
Original line number Diff line number Diff line
@@ -3,9 +3,22 @@
 * Copyright (c) 2019, The Linux Foundation. All rights reserved.
 */

#ifndef _MSM_ION_KERNEL_H
#define _MSM_ION_KERNEL_H
#ifndef _MSM_ION_OF_H
#define _MSM_ION_OF_H

#include <linux/device.h>
#include <uapi/linux/msm_ion.h>

#if IS_ENABLED(CONFIG_ION_MSM_HEAPS)

struct device *msm_ion_heap_device_by_id(int heap_id);

#endif /* _MSM_ION_H */
#else

static inline struct device *msm_ion_heap_device_by_id(int heap_id)
{
	return ERR_PTR(-ENODEV);
}

#endif /* CONFIG_ION_MSM_HEAPS */
#endif /* _MSM_ION_OF_H */