drivers/base/core.c: use strreplace()
This eliminates a little .text and avoids repeating the strchr call when we meet a '!' (which will happen at least once). Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
2abf114fc8
commit
a29fd614a6
|
@ -1303,12 +1303,11 @@ const char *device_get_devnode(struct device *dev,
|
||||||
return dev_name(dev);
|
return dev_name(dev);
|
||||||
|
|
||||||
/* replace '!' in the name with '/' */
|
/* replace '!' in the name with '/' */
|
||||||
*tmp = kstrdup(dev_name(dev), GFP_KERNEL);
|
s = kstrdup(dev_name(dev), GFP_KERNEL);
|
||||||
if (!*tmp)
|
if (!s)
|
||||||
return NULL;
|
return NULL;
|
||||||
while ((s = strchr(*tmp, '!')))
|
strreplace(s, '!', '/');
|
||||||
s[0] = '/';
|
return *tmp = s;
|
||||||
return *tmp;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue