From: Gilad Ben-Yossef Date: Thu, 7 Sep 2017 09:00:15 +0000 (+0300) Subject: staging: ccree: replace noop macro with inline X-Git-Tag: v4.19~2226^2~353 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3b2eb3799eacf6fe4677871c2ffdfc15b794b1e9;p=platform%2Fkernel%2Flinux-rpi.git staging: ccree: replace noop macro with inline Replace noop macro with a noop inline function Signed-off-by: Gilad Ben-Yossef Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/ccree/ssi_driver.h b/drivers/staging/ccree/ssi_driver.h index 06a3c48..81ba827 100644 --- a/drivers/staging/ccree/ssi_driver.h +++ b/drivers/staging/ccree/ssi_driver.h @@ -187,8 +187,8 @@ struct async_gen_req_ctx { #ifdef DX_DUMP_BYTES void dump_byte_array(const char *name, const u8 *the_array, unsigned long size); #else -#define dump_byte_array(name, array, size) do { \ -} while (0); +static inline void dump_byte_array(const char *name, const u8 *the_array, + unsigned long size) {}; #endif int init_cc_regs(struct ssi_drvdata *drvdata, bool is_probe);