remoteproc: qcom: Add missing slab.h
authorKefeng Wang <wangkefeng.wang@huawei.com>
Mon, 13 Jul 2020 02:00:03 +0000 (10:00 +0800)
committerBjorn Andersson <bjorn.andersson@linaro.org>
Mon, 13 Jul 2020 18:54:27 +0000 (11:54 -0700)
commit0cf17702d872128fc2bec79a9578b5cb00d54a11
tree47d74cc24a28a7c2f21a2b4db5e833e494f729bf
parent62495d778439a4e47571293511a785cba754874c
remoteproc: qcom: Add missing slab.h

drivers/remoteproc/qcom_common.c: In function 'qcom_ssr_get_subsys':
drivers/remoteproc/qcom_common.c:210:9: error: implicit declaration of function 'kzalloc'; did you mean 'vzalloc'?
[-Werror=implicit-function-declaration]
  info = kzalloc(sizeof(*info), GFP_KERNEL);
         ^~~~~~~
         vzalloc

kzalloc() is declared in linux/slab.h, add include to fix build issue.

Tested-by: Alex Elder <elder@linaro.org>
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Kefeng Wang <wangkefeng.wang@huawei.com>
Link: https://lore.kernel.org/r/20200713020003.134039-1-wangkefeng.wang@huawei.com
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
drivers/remoteproc/qcom_common.c