From: Cai Huoqing Date: Wed, 9 Feb 2022 03:24:50 +0000 (+0800) Subject: powerpc/BSR: Make use of the helper macro LIST_HEAD() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=aef3125dd6db982cdeed0d3f1ba68211e44e6cde;p=linux.git powerpc/BSR: Make use of the helper macro LIST_HEAD() Replace "struct list_head head = LIST_HEAD_INIT(head)" with "LIST_HEAD(head)" to simplify the code. Signed-off-by: Cai Huoqing Link: https://lore.kernel.org/r/20220209032450.37849-1-cai.huoqing@linux.dev Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/char/bsr.c b/drivers/char/bsr.c index cce2af5df7b4f..d5f943938427f 100644 --- a/drivers/char/bsr.c +++ b/drivers/char/bsr.c @@ -60,7 +60,7 @@ struct bsr_dev { }; static unsigned total_bsr_devs; -static struct list_head bsr_devs = LIST_HEAD_INIT(bsr_devs); +static LIST_HEAD(bsr_devs); static struct class *bsr_class; static int bsr_major;