diff options
author | Simon Glass <sjg@chromium.org> | 2015-09-28 23:32:03 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-10-23 09:42:28 -0600 |
commit | fb04c9d7b80c5f22e79788b9345d4ee551a4fc0b (patch) | |
tree | b66ecef06565e3ee4fca8aca1442b0c513b67ae0 /include/dm/device.h | |
parent | 9a79f6e6d51f35eca9fff34dd5e4689dfd2c59a8 (diff) | |
download | u-boot-fb04c9d7b80c5f22e79788b9345d4ee551a4fc0b.tar.gz u-boot-fb04c9d7b80c5f22e79788b9345d4ee551a4fc0b.tar.bz2 u-boot-fb04c9d7b80c5f22e79788b9345d4ee551a4fc0b.zip |
dm: core: Fix device flag whitespace
Line up the flag values in the code for easier readability.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/dm/device.h')
-rw-r--r-- | include/dm/device.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/dm/device.h b/include/dm/device.h index e09f897882..286a702efd 100644 --- a/include/dm/device.h +++ b/include/dm/device.h @@ -21,13 +21,13 @@ struct driver_info; /* Driver is active (probed). Cleared when it is removed */ -#define DM_FLAG_ACTIVATED (1 << 0) +#define DM_FLAG_ACTIVATED (1 << 0) /* DM is responsible for allocating and freeing platdata */ -#define DM_FLAG_ALLOC_PDATA (1 << 1) +#define DM_FLAG_ALLOC_PDATA (1 << 1) /* DM should init this device prior to relocation */ -#define DM_FLAG_PRE_RELOC (1 << 2) +#define DM_FLAG_PRE_RELOC (1 << 2) /* DM is responsible for allocating and freeing parent_platdata */ #define DM_FLAG_ALLOC_PARENT_PDATA (1 << 3) @@ -36,10 +36,10 @@ struct driver_info; #define DM_FLAG_ALLOC_UCLASS_PDATA (1 << 4) /* Allocate driver private data on a DMA boundary */ -#define DM_FLAG_ALLOC_PRIV_DMA (1 << 5) +#define DM_FLAG_ALLOC_PRIV_DMA (1 << 5) /* Device is bound */ -#define DM_FLAG_BOUND (1 << 6) +#define DM_FLAG_BOUND (1 << 6) /** * struct udevice - An instance of a driver |