2022-03-13 14:11:40

by Lizhe

[permalink] [raw]
Subject: [PATCH] drivers/dd.c : Remove the initial value of the global variable

The global variable driver_deferred_probe_enable has
a default value of false and does not need to be
initialized to false

Signed-off-by: lizhe <[email protected]>
---
drivers/base/dd.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/base/dd.c b/drivers/base/dd.c
index f47cab21430f..7fcd895d49be 100644
--- a/drivers/base/dd.c
+++ b/drivers/base/dd.c
@@ -152,7 +152,7 @@ void driver_deferred_probe_del(struct device *dev)
mutex_unlock(&deferred_probe_mutex);
}

-static bool driver_deferred_probe_enable = false;
+static bool driver_deferred_probe_enable;
/**
* driver_deferred_probe_trigger() - Kick off re-probing deferred devices
*
--
2.25.1


2022-03-14 19:06:01

by Greg Kroah-Hartman

[permalink] [raw]
Subject: Re: [PATCH] drivers/dd.c : Remove the initial value of the global variable

On Sat, Mar 12, 2022 at 08:24:42PM -0800, lizhe wrote:
> The global variable driver_deferred_probe_enable has
> a default value of false and does not need to be
> initialized to false
>
> Signed-off-by: lizhe <[email protected]>

Is this the full name you sign documents with?

Also, I got two different copies of this change, which one is correct?

thanks,

greg k-h