summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Jacques Hiblot <jjhiblot@ti.com>2019-09-26 15:43:54 +0200
committerSimon Glass <sjg@chromium.org>2019-10-15 08:40:03 -0600
commitd8efa2ce2abe293c97576f47ccac708e233553b6 (patch)
treebffee436e65b538387b34389b859d5cb5632b078
parent833e4192cd791733ddc0106996a4f86f9269ceba (diff)
downloadu-boot-d8efa2ce2abe293c97576f47ccac708e233553b6.tar.gz
dm: device: Fix typo in the non-DEVRES version of devm_kmalloc_array()
When DEVRES is not set, devm_kmalloc_array() is spelled devm_kmaloc_array() (with one 'l' only). Fixing it so that the name is the same with and without DEVRES. Signed-off-by: Jean-Jacques Hiblot <jjhiblot@ti.com> Reviewed-by: Simon Glass <sjg@chromium.org>
-rw-r--r--include/dm/device.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/dm/device.h b/include/dm/device.h
index defda0aebc..44cc3d2bd0 100644
--- a/include/dm/device.h
+++ b/include/dm/device.h
@@ -945,8 +945,8 @@ static inline void *devm_kzalloc(struct udevice *dev, size_t size, gfp_t gfp)
return kzalloc(size, gfp);
}
-static inline void *devm_kmaloc_array(struct udevice *dev,
- size_t n, size_t size, gfp_t flags)
+static inline void *devm_kmalloc_array(struct udevice *dev,
+ size_t n, size_t size, gfp_t flags)
{
/* TODO: add kmalloc_array() to linux/compat.h */
if (size != 0 && n > SIZE_MAX / size)