From: Jeff King Date: Sat, 13 May 2017 09:04:58 +0000 (-0400) Subject: pkt-line: annotate packet_writel with LAST_ARG_MUST_BE_NULL X-Git-Tag: v2.14.0-rc0~144^2~6 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/7e936842f54c98eb41fb46c94da417065fe333f5?hp=7e936842f54c98eb41fb46c94da417065fe333f5 pkt-line: annotate packet_writel with LAST_ARG_MUST_BE_NULL packet_writel() takes a variable-sized list and reads to the first NULL. Let's let the compiler know so that it can help us catch mistakes in the callers. This should have been annotated similarly when it was a static function, but it's doubly important now that the function is available to the whole code-base. Signed-off-by: Jeff King Signed-off-by: Junio C Hamano ---