Commit b65a3fa3 authored by Bjorn Andersson's avatar Bjorn Andersson Committed by Bjorn Andersson

soc: qcom: aoss: Mark qmp_send() __printf()

As reported by lkp, qmp_send() would benefit from a __printf() marker to
allow the compiler to further validate the passed parameters, fix this.
Reported-by: default avatarkernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202401100855.UYl3HPPt-lkp@intel.com/Signed-off-by: default avatarBjorn Andersson <quic_bjorande@quicinc.com>
Reviewed-by: default avatarKonrad Dybcio <konrad.dybcio@linaro.org>
Link: https://lore.kernel.org/r/20240119-aoss-printf-annotation-v1-1-27e2ceb8937a@quicinc.comSigned-off-by: default avatarBjorn Andersson <andersson@kernel.org>
parent 6613476e
...@@ -214,7 +214,7 @@ static bool qmp_message_empty(struct qmp *qmp) ...@@ -214,7 +214,7 @@ static bool qmp_message_empty(struct qmp *qmp)
* *
* Return: 0 on success, negative errno on failure * Return: 0 on success, negative errno on failure
*/ */
int qmp_send(struct qmp *qmp, const char *fmt, ...) int __printf(2, 3) qmp_send(struct qmp *qmp, const char *fmt, ...)
{ {
char buf[QMP_MSG_LEN]; char buf[QMP_MSG_LEN];
long time_left; long time_left;
......
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