diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2017-12-17 18:19:43 +0100 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2018-01-21 10:01:02 -0700 |
commit | fa9335a89c61837414e3db27bb85c3c459803ff0 (patch) | |
tree | d2615e53d718c58b9695d9881b1571b59be25e66 /include/dm/uclass.h | |
parent | 557767ed29968af0294e3aae48433e5d5a298e0b (diff) | |
download | u-boot-fa9335a89c61837414e3db27bb85c3c459803ff0.tar.gz u-boot-fa9335a89c61837414e3db27bb85c3c459803ff0.tar.xz u-boot-fa9335a89c61837414e3db27bb85c3c459803ff0.zip |
dm: fix typo falback
%s/falback/fallback/g
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/dm/uclass.h')
-rw-r--r-- | include/dm/uclass.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/dm/uclass.h b/include/dm/uclass.h index 18188497c2..709f661f20 100644 --- a/include/dm/uclass.h +++ b/include/dm/uclass.h @@ -72,11 +72,11 @@ struct udevice; * then this will be automatically allocated. * @per_child_auto_alloc_size: Each child device (of a parent in this * uclass) can hold parent data for the device/uclass. This value is only - * used as a falback if this member is 0 in the driver. + * used as a fallback if this member is 0 in the driver. * @per_child_platdata_auto_alloc_size: A bus likes to store information about * its children. If non-zero this is the size of this data, to be allocated * in the child device's parent_platdata pointer. This value is only used as - * a falback if this member is 0 in the driver. + * a fallback if this member is 0 in the driver. * @ops: Uclass operations, providing the consistent interface to devices * within the uclass. * @flags: Flags for this uclass (DM_UC_...) |