diff mbox series

dm: replace auto_alloc_size with auto

Message ID 20210123184857.9777-1-dariobin@libero.it
State Accepted
Commit fabae8711fd74c0b803f62fd24d28d6712042c2f
Delegated to: Simon Glass
Headers show
Series dm: replace auto_alloc_size with auto | expand

Commit Message

Dario Binacchi Jan. 23, 2021, 6:48 p.m. UTC
The auto_alloc_size members of struct driver has been renamed auto.

Signed-off-by: Dario Binacchi <dariobin@libero.it>
---

 include/dm/device.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Simon Glass Jan. 24, 2021, 2:03 a.m. UTC | #1
On Sat, 23 Jan 2021 at 11:49, Dario Binacchi <dariobin@libero.it> wrote:
>
> The auto_alloc_size members of struct driver has been renamed auto.
>
> Signed-off-by: Dario Binacchi <dariobin@libero.it>
> ---
>
>  include/dm/device.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>

Reviewed-by: Simon Glass <sjg@chromium.org>
Simon Glass Jan. 30, 2021, 9:26 p.m. UTC | #2
On Sat, 23 Jan 2021 at 11:49, Dario Binacchi <dariobin@libero.it> wrote:
>
> The auto_alloc_size members of struct driver has been renamed auto.
>
> Signed-off-by: Dario Binacchi <dariobin@libero.it>
> ---
>
>  include/dm/device.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>

Reviewed-by: Simon Glass <sjg@chromium.org>

Applied to u-boot-dm, thanks!
diff mbox series

Patch

diff --git a/include/dm/device.h b/include/dm/device.h
index f5b4cd6876..e665558444 100644
--- a/include/dm/device.h
+++ b/include/dm/device.h
@@ -111,7 +111,7 @@  enum {
  * probe method if the device has a device tree node.
  *
  * All three of plat, priv and uclass_priv can be allocated by the
- * driver, or you can use the auto_alloc_size members of struct driver and
+ * driver, or you can use the auto members of struct driver and
  * struct uclass_driver to have driver model do this automatically.
  *
  * @driver: The driver used by this device