Skip to content

Commit

Permalink
[PATCH] sysfs_{create|remove}_link should take const char *
Browse files Browse the repository at this point in the history
sysfs: make sysfs_{create|remove}_link to take const char * name.

Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Dmitry Torokhov authored and Greg Kroah-Hartman committed Jun 20, 2005
1 parent eb11d8f commit e3a15db
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions fs/sysfs/symlink.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ static void fill_object_path(struct kobject * kobj, char * buffer, int length)
}
}

static int sysfs_add_link(struct dentry * parent, char * name, struct kobject * target)
static int sysfs_add_link(struct dentry * parent, const char * name, struct kobject * target)
{
struct sysfs_dirent * parent_sd = parent->d_fsdata;
struct sysfs_symlink * sl;
Expand Down Expand Up @@ -79,7 +79,7 @@ static int sysfs_add_link(struct dentry * parent, char * name, struct kobject *
* @target: object we're pointing to.
* @name: name of the symlink.
*/
int sysfs_create_link(struct kobject * kobj, struct kobject * target, char * name)
int sysfs_create_link(struct kobject * kobj, struct kobject * target, const char * name)
{
struct dentry * dentry = kobj->dentry;
int error = 0;
Expand All @@ -99,13 +99,13 @@ int sysfs_create_link(struct kobject * kobj, struct kobject * target, char * nam
* @name: name of the symlink to remove.
*/

void sysfs_remove_link(struct kobject * kobj, char * name)
void sysfs_remove_link(struct kobject * kobj, const char * name)
{
sysfs_hash_and_remove(kobj->dentry,name);
}

static int sysfs_get_target_path(struct kobject * kobj, struct kobject * target,
char *path)
char *path)
{
char * s;
int depth, size;
Expand Down
10 changes: 5 additions & 5 deletions include/linux/sysfs.h
Original file line number Diff line number Diff line change
Expand Up @@ -105,11 +105,11 @@ sysfs_chmod_file(struct kobject *kobj, struct attribute *attr, mode_t mode);
extern void
sysfs_remove_file(struct kobject *, const struct attribute *);

extern int
sysfs_create_link(struct kobject * kobj, struct kobject * target, char * name);
extern int
sysfs_create_link(struct kobject * kobj, struct kobject * target, const char * name);

extern void
sysfs_remove_link(struct kobject *, char * name);
sysfs_remove_link(struct kobject *, const char * name);

int sysfs_create_bin_file(struct kobject * kobj, struct bin_attribute * attr);
int sysfs_remove_bin_file(struct kobject * kobj, struct bin_attribute * attr);
Expand Down Expand Up @@ -153,12 +153,12 @@ static inline void sysfs_remove_file(struct kobject * k, const struct attribute
;
}

static inline int sysfs_create_link(struct kobject * k, struct kobject * t, char * n)
static inline int sysfs_create_link(struct kobject * k, struct kobject * t, const char * n)
{
return 0;
}

static inline void sysfs_remove_link(struct kobject * k, char * name)
static inline void sysfs_remove_link(struct kobject * k, const char * name)
{
;
}
Expand Down

0 comments on commit e3a15db

Please sign in to comment.