Skip to content

Commit

Permalink
ALSA: hda: make kobj_type structure constant
Browse files Browse the repository at this point in the history
Since commit ee6d3dd ("driver core: make kobj_type constant.")
the driver core allows the usage of const struct kobj_type.

Take advantage of this to constify the structure definition to prevent
modification at runtime.

Signed-off-by: Thomas Weißschuh <linux@weissschuh.net>
Link: https://lore.kernel.org/r/20230211-kobj_type-sound-v1-1-17107ceb25b7@weissschuh.net
Signed-off-by: Takashi Iwai <tiwai@suse.de>
  • Loading branch information
Thomas Weißschuh authored and Takashi Iwai committed Feb 11, 2023
1 parent 4fe20d6 commit aacdac3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sound/hda/hdac_sysfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ static void widget_release(struct kobject *kobj)
kfree(kobj);
}

static struct kobj_type widget_ktype = {
static const struct kobj_type widget_ktype = {
.release = widget_release,
.sysfs_ops = &widget_sysfs_ops,
};
Expand Down

0 comments on commit aacdac3

Please sign in to comment.