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

Commit 8bdbc287 authored by Yong Ding's avatar Yong Ding
Browse files

soc: qcom: hab: fix the incompatible pointer initialization warning



Such warning of "initialization from incompatible pointer type"
is found in the build time, and it's good to fix it.

Change-Id: Iaf820ae7ec4a7851185febbdebaaab3706fb2402
Signed-off-by: default avatarYong Ding <yongding@codeaurora.org>
parent 4dabf448
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -278,7 +278,7 @@ static ssize_t vchan_show(struct kobject *kobj, struct kobj_attribute *attr,
}

static ssize_t vchan_store(struct kobject *kobj, struct kobj_attribute *attr,
						 char *buf, size_t count)
						const char *buf, size_t count)
{
	int ret;

@@ -297,7 +297,7 @@ static ssize_t ctx_show(struct kobject *kobj, struct kobj_attribute *attr,
}

static ssize_t ctx_store(struct kobject *kobj, struct kobj_attribute *attr,
						 char *buf, size_t count)
						const char *buf, size_t count)
{
	int ret;

@@ -316,7 +316,7 @@ static ssize_t expimp_show(struct kobject *kobj, struct kobj_attribute *attr,
}

static ssize_t expimp_store(struct kobject *kobj, struct kobj_attribute *attr,
						 char *buf, size_t count)
						const char *buf, size_t count)
{
	int ret;