mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 06:44:00 -04:00
driver core: class: make class_create/remove_file*() options const
The class_create_file*() and class_remove_file*() functions do not modify the struct class at all, so mark them as const * to enforce that. Cc: "Rafael J. Wysocki" <rafael@kernel.org> Link: https://lore.kernel.org/r/20230313181843.1207845-8-gregkh@linuxfoundation.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
@@ -87,7 +87,7 @@ static const struct kobj_type class_ktype = {
|
||||
static struct kset *class_kset;
|
||||
|
||||
|
||||
int class_create_file_ns(struct class *cls, const struct class_attribute *attr,
|
||||
int class_create_file_ns(const struct class *cls, const struct class_attribute *attr,
|
||||
const void *ns)
|
||||
{
|
||||
int error;
|
||||
@@ -101,7 +101,7 @@ int class_create_file_ns(struct class *cls, const struct class_attribute *attr,
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(class_create_file_ns);
|
||||
|
||||
void class_remove_file_ns(struct class *cls, const struct class_attribute *attr,
|
||||
void class_remove_file_ns(const struct class *cls, const struct class_attribute *attr,
|
||||
const void *ns)
|
||||
{
|
||||
if (cls)
|
||||
|
||||
Reference in New Issue
Block a user