From: Lee Jones Date: Mon, 23 Dec 2024 15:18:37 +0000 (+0000) Subject: misc: trivial: Remove undesired double space from struct definition X-Git-Tag: v6.14-rc1~67^2~114 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=94ddd8bf98d76f03297a2b33a951711b31f7bc38;p=thirdparty%2Fkernel%2Flinux.git misc: trivial: Remove undesired double space from struct definition When one is too lazy to use an LSP to conduct look-ups on struct definitions, one might use the ever useful `struct {` search string. However this doesn't work with `struct miscdevice {` because of a stray double space. Assuming that this wasn't intentional, let's simply remove it. Signed-off-by: Lee Jones Link: https://lore.kernel.org/r/20241223151843.472645-1-lee@kernel.org Signed-off-by: Greg Kroah-Hartman --- diff --git a/include/linux/miscdevice.h b/include/linux/miscdevice.h index c0fea6ca50768..69e110c2b86a9 100644 --- a/include/linux/miscdevice.h +++ b/include/linux/miscdevice.h @@ -76,7 +76,7 @@ struct device; struct attribute_group; -struct miscdevice { +struct miscdevice { int minor; const char *name; const struct file_operations *fops;