Commit bec62e3f authored by Federico Vaga's avatar Federico Vaga

kernel: fix print warning

Signed-off-by: 's avatarFederico Vaga <federico.vaga@gmail.com>
parent 11afe5e8
......@@ -391,7 +391,7 @@ static ssize_t wrnc_store_smem_op(struct device *dev,
return -EINVAL;
if (val < WRNC_SMEM_DIRECT || val > WRNC_SMEM_ADD) {
dev_err(&wrnc->dev, "Unsupported operation %d\n", val);
dev_err(&wrnc->dev, "Unsupported operation %ld\n", val);
return -EINVAL;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment