1
0
Fork 0

mux: make device_type const

Make this const as it is only stored in the type field of a device
structure, which is const.
Done using Coccinelle.

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Peter Rosin <peda@axentia.se>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
hifive-unleashed-5.1
Bhumika Goyal 2017-08-29 10:49:52 +02:00 committed by Greg Kroah-Hartman
parent ac317e2767
commit a49c3feeb8
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ static void mux_chip_release(struct device *dev)
kfree(mux_chip);
}
static struct device_type mux_type = {
static const struct device_type mux_type = {
.name = "mux-chip",
.release = mux_chip_release,
};