rfkill: allocate static minor
authorMarcel Holtmann <marcel@holtmann.org>
Thu, 24 Oct 2019 17:40:42 +0000 (19:40 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 13 Dec 2019 07:43:18 +0000 (08:43 +0100)
commitfbf86f6d5ab646639f438ffdd9f546cb4d983f2a
tree264d3155cc9e90ce52e6e3c4c65d43eb47305e19
parent5ab462ef090bb78b05717ccabe4fc4ee278adb2b
rfkill: allocate static minor

commit 8670b2b8b029a6650d133486be9d2ace146fd29a upstream.

udev has a feature of creating /dev/<node> device-nodes if it finds
a devnode:<node> modalias. This allows for auto-loading of modules that
provide the node. This requires to use a statically allocated minor
number for misc character devices.

However, rfkill uses dynamic minor numbers and prevents auto-loading
of the module. So allocate the next static misc minor number and use
it for rfkill.

Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Link: https://lore.kernel.org/r/20191024174042.19851-1-marcel@holtmann.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
include/linux/miscdevice.h
net/rfkill/core.c