diff options
author | Simon Glass <sjg@chromium.org> | 2016-07-04 17:58:15 (GMT) |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2016-07-15 02:40:24 (GMT) |
commit | fd1c2d9b6a3a9b41ae070ca47361bd6cc6aaaf09 (patch) | |
tree | d0b5a714bc52a00516b0acb7dfc8d141154a70c6 /drivers/core/device.c | |
parent | 7d23b9cf2b1a5a86f7e89a443e3a2de9dac8a9ad (diff) | |
download | u-boot-fd1c2d9b6a3a9b41ae070ca47361bd6cc6aaaf09.tar.xz |
dm: core: Rename DM_NAME_ALLOCED to DM_FLAG_NAME_ALLOCED
This is a flag. Adjust the name to be consistent with the other flags.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/core/device.c')
-rw-r--r-- | drivers/core/device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/core/device.c b/drivers/core/device.c index d8f9d5b..6967c3d 100644 --- a/drivers/core/device.c +++ b/drivers/core/device.c @@ -738,7 +738,7 @@ bool device_is_last_sibling(struct udevice *dev) void device_set_name_alloced(struct udevice *dev) { - dev->flags |= DM_NAME_ALLOCED; + dev->flags |= DM_FLAG_NAME_ALLOCED; } int device_set_name(struct udevice *dev, const char *name) |