From: Corentin Labbe Date: Thu, 15 Dec 2016 14:40:33 +0000 (+0100) Subject: mmtimer: add member name to the miscdevice declaration X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=f17c941cbcdccc4fef49a10622ce2ffd2321a143;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git mmtimer: add member name to the miscdevice declaration Since the struct miscdevice have many members, it is dangerous to init it without members name relying only on member order. This patch add member name to the init declaration. Signed-off-by: Corentin Labbe Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/char/mmtimer.c b/drivers/char/mmtimer.c index f786b18ac500..b708c85dc9c1 100644 --- a/drivers/char/mmtimer.c +++ b/drivers/char/mmtimer.c @@ -463,9 +463,9 @@ static int mmtimer_mmap(struct file *file, struct vm_area_struct *vma) } static struct miscdevice mmtimer_miscdev = { - SGI_MMTIMER, - MMTIMER_NAME, - &mmtimer_fops + .minor = SGI_MMTIMER, + .name = MMTIMER_NAME, + .fops = &mmtimer_fops }; static struct timespec sgi_clock_offset;