aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/device.h
diff options
context:
space:
mode:
authorManish Badarkhe <badarkhe.manish@gmail.com>2014-01-29 20:27:27 +0530
committerMark Brown <broonie@linaro.org>2014-02-11 16:34:32 +0000
commite31108cad3deabb1a63111d7aa699ca67753c01f (patch)
tree064b0ddbd24537c667b4d308286d980770f83ac5 /include/linux/device.h
parentLinus 3.14-rc1 (diff)
downloadlinux-dev-e31108cad3deabb1a63111d7aa699ca67753c01f.tar.xz
linux-dev-e31108cad3deabb1a63111d7aa699ca67753c01f.zip
devres: introduce API "devm_kstrdup"
This patch introduces "devm_kstrdup" API so that the device's driver can allocate memory and copy string. Signed-off-by: Manish Badarkhe <badarkhe.manish@gmail.com> Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'include/linux/device.h')
-rw-r--r--include/linux/device.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/device.h b/include/linux/device.h
index 952b01033c32..ec1b6e21f0ef 100644
--- a/include/linux/device.h
+++ b/include/linux/device.h
@@ -626,6 +626,7 @@ static inline void *devm_kcalloc(struct device *dev,
return devm_kmalloc_array(dev, n, size, flags | __GFP_ZERO);
}
extern void devm_kfree(struct device *dev, void *p);
+extern char *devm_kstrdup(struct device *dev, const char *s, gfp_t gfp);
void __iomem *devm_ioremap_resource(struct device *dev, struct resource *res);
void __iomem *devm_request_and_ioremap(struct device *dev,