Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1250805
| From | Tomeu Vizoso <tomeu.vizoso@collabora.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] driver core: Disable late probes by default |
| Date | 2015-10-19 17:20 +0200 |
| Message-ID | <qlkoa-8eL-3@gated-at.bofh.it> (permalink) |
| References | <qkhLI-5ON-11@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
To smooth the transition to late probes, make disabled the default for DELAY_DEVICE_PROBES and let individual SoCs enable the option as they get fixed. Signed-off-by: Tomeu Vizoso <tomeu.vizoso@collabora.com> Link: https://lkml.kernel.org/g/20151016181129.GA1764@gradator.net --- Hi Rob, I'm sending this in case you think it would be best to leave the on-demand probe series in -next for now but have late probes disabled to avoid hassle to some people. Regards, Tomeu --- drivers/base/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/base/Kconfig b/drivers/base/Kconfig index b449b17055c9..17e711a725e3 100644 --- a/drivers/base/Kconfig +++ b/drivers/base/Kconfig @@ -326,7 +326,7 @@ endif config DELAY_DEVICE_PROBES bool "Allow delaying the probe of some devices" if EXPERT - default y + default n help Devices can be matched to a driver and probed from the moment they are registered, but early during boot their probes are likely to be @@ -340,6 +340,6 @@ config DELAY_DEVICE_PROBES In some platforms there may be implicit assumptions about when some devices are probed, so enabling this option could cause problems there. - If unsure, say Y here. + If unsure, say N here. endmenu -- 2.5.0 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH] driver core: Disable late probes by default Tomeu Vizoso <tomeu.vizoso@collabora.com> - 2015-10-19 17:20 +0200
Re: [PATCH] driver core: Disable late probes by default Greg Kroah-Hartman <gregkh@linuxfoundation.org> - 2015-10-19 17:20 +0200
Re: [PATCH] driver core: Disable late probes by default Tomeu Vizoso <tomeu.vizoso@collabora.com> - 2015-10-20 09:50 +0200
Re: [PATCH] driver core: Disable late probes by default Greg Kroah-Hartman <gregkh@linuxfoundation.org> - 2015-10-20 16:10 +0200
Re: [PATCH] driver core: Disable late probes by default Tomeu Vizoso <tomeu.vizoso@collabora.com> - 2015-10-20 18:20 +0200
Re: [PATCH] driver core: Disable late probes by default Greg Kroah-Hartman <gregkh@linuxfoundation.org> - 2015-10-21 05:40 +0200
Re: [PATCH] driver core: Disable late probes by default Tomeu Vizoso <tomeu.vizoso@collabora.com> - 2015-10-21 16:40 +0200
Re: [PATCH] driver core: Disable late probes by default Greg Kroah-Hartman <gregkh@linuxfoundation.org> - 2015-10-21 17:20 +0200
Re: [PATCH] driver core: Disable late probes by default Tomeu Vizoso <tomeu.vizoso@collabora.com> - 2015-10-21 18:00 +0200
Re: [PATCH] driver core: Disable late probes by default Greg Kroah-Hartman <gregkh@linuxfoundation.org> - 2015-10-21 18:10 +0200
Re: [PATCH] driver core: Disable late probes by default Rob Herring <robh+dt@kernel.org> - 2015-10-21 20:20 +0200
Re: [PATCH] driver core: Disable late probes by default Greg Kroah-Hartman <gregkh@linuxfoundation.org> - 2015-10-21 20:50 +0200
Re: [PATCH] driver core: Disable late probes by default Rob Herring <robh+dt@kernel.org> - 2015-10-21 23:00 +0200
Re: [PATCH] driver core: Disable late probes by default Greg Kroah-Hartman <gregkh@linuxfoundation.org> - 2015-10-21 23:10 +0200
csiph-web