diff options
author | Tom Rini <trini@konsulko.com> | 2021-07-07 13:34:42 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-07-07 13:34:42 -0400 |
commit | 7e58a3a148fb94e9ce09fb48d0ddd75c20ee7df9 (patch) | |
tree | 6a4edadac675129fe33da72bb6aa863b7e57f2e1 /include/dm/uclass.h | |
parent | 5b8a83551d339736af92c43524ed0e1ba01122af (diff) | |
parent | 880e4768c20b99b1f9a50f35c180f8522dd82c9a (diff) |
Merge tag 'dm-pull-6jul21' of https://source.denx.de/u-boot/custodians/u-boot-dm
various minor sandbox improvements
Diffstat (limited to 'include/dm/uclass.h')
-rw-r--r-- | include/dm/uclass.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/dm/uclass.h b/include/dm/uclass.h index 6752d8ee0be..2778818b528 100644 --- a/include/dm/uclass.h +++ b/include/dm/uclass.h @@ -84,8 +84,6 @@ struct udevice; * its children. If non-zero this is the size of this data, to be allocated * in the child device's parent_plat pointer. This value is only used as * 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_...) */ struct uclass_driver { @@ -106,7 +104,6 @@ struct uclass_driver { int per_device_plat_auto; int per_child_auto; int per_child_plat_auto; - const void *ops; uint32_t flags; }; |