From: Kalle Valo Date: Wed, 25 Jul 2018 07:59:37 +0000 (+0300) Subject: ath10k: fix open brace location in ath10k_wmi_tlv_op_gen_dbglog_cfg() X-Git-Tag: v4.19~410^2~25^2~13^2~38 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1e3c43a7f111943fb6bb7cafa9d1e9834d6b2b0e;p=platform%2Fkernel%2Flinux-rpi.git ath10k: fix open brace location in ath10k_wmi_tlv_op_gen_dbglog_cfg() Fixes a recently added checkpatch warning: wmi-tlv.c:2703: open brace '{' following function definitions go on the next line Signed-off-by: Kalle Valo --- diff --git a/drivers/net/wireless/ath/ath10k/wmi-tlv.c b/drivers/net/wireless/ath/ath10k/wmi-tlv.c index b04f86f..435295d 100644 --- a/drivers/net/wireless/ath/ath10k/wmi-tlv.c +++ b/drivers/net/wireless/ath/ath10k/wmi-tlv.c @@ -2702,7 +2702,8 @@ ath10k_wmi_tlv_op_gen_force_fw_hang(struct ath10k *ar, static struct sk_buff * ath10k_wmi_tlv_op_gen_dbglog_cfg(struct ath10k *ar, u64 module_enable, - u32 log_level) { + u32 log_level) +{ struct wmi_tlv_dbglog_cmd *cmd; struct wmi_tlv *tlv; struct sk_buff *skb;