* [PATCH] i2c: sirf: move driver init from module_init to subsys_initcall
@ 2013-05-16 2:50 Barry Song
[not found] ` <1368672607-5536-1-git-send-email-Baohua.Song-kQvG35nSl+M@public.gmane.org>
0 siblings, 1 reply; 12+ messages in thread
From: Barry Song @ 2013-05-16 2:50 UTC (permalink / raw)
To: wsa, linux-i2c
Cc: Barry Song, workgroup.linux, linux-arm-kernel, Xiaomeng Hou
From: Xiaomeng Hou <Xiaomeng.Hou@csr.com>
if we initilize i2c bus by module_init, there are some devices which want
initialization earlier than i2c and could not do that in time, so move i2c
driver initilization to subsys_initcall and make i2c ready before devices
init.
Signed-off-by: Xiaomeng Hou <Xiaomeng.Hou@csr.com>
Signed-off-by: Barry Song <Baohua.Song@csr.com>
---
drivers/i2c/busses/i2c-sirf.c | 14 +++++++++++++-
1 file changed, 13 insertions(+), 1 deletion(-)
diff --git a/drivers/i2c/busses/i2c-sirf.c b/drivers/i2c/busses/i2c-sirf.c
index 5a7ad24..e438f48 100644
--- a/drivers/i2c/busses/i2c-sirf.c
+++ b/drivers/i2c/busses/i2c-sirf.c
@@ -454,7 +454,19 @@ static struct platform_driver i2c_sirfsoc_driver = {
.probe = i2c_sirfsoc_probe,
.remove = i2c_sirfsoc_remove,
};
-module_platform_driver(i2c_sirfsoc_driver);
+
+static __init int i2c_sirfsoc_init(void)
+{
+ return platform_driver_register(&i2c_sirfsoc_driver);
+}
+
+static void __exit i2c_sirfsoc_exit(void)
+{
+ platform_driver_unregister(&i2c_sirfsoc_driver);
+}
+
+subsys_initcall(i2c_sirfsoc_init);
+module_exit(i2c_sirfsoc_exit);
MODULE_DESCRIPTION("SiRF SoC I2C master controller driver");
MODULE_AUTHOR("Zhiwu Song <Zhiwu.Song@csr.com>, "
--
1.8.2.3
Member of the CSR plc group of companies. CSR plc registered in England and Wales, registered number 4187346, registered office Churchill House, Cambridge Business Park, Cowley Road, Cambridge, CB4 0WZ, United Kingdom
More information can be found at www.csr.com. Follow CSR on Twitter at http://twitter.com/CSR_PLC and read our blog at www.csr.com/blog
^ permalink raw reply related [flat|nested] 12+ messages in thread[parent not found: <1368672607-5536-1-git-send-email-Baohua.Song-kQvG35nSl+M@public.gmane.org>]
* Re: [PATCH] i2c: sirf: move driver init from module_init to subsys_initcall [not found] ` <1368672607-5536-1-git-send-email-Baohua.Song-kQvG35nSl+M@public.gmane.org> @ 2013-05-16 9:38 ` Wolfram Sang 2013-05-16 10:25 ` Barry Song 0 siblings, 1 reply; 12+ messages in thread From: Wolfram Sang @ 2013-05-16 9:38 UTC (permalink / raw) To: Barry Song Cc: linux-i2c-u79uwXL29TY76Z2rM5mHXA, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, workgroup.linux-kQvG35nSl+M, Xiaomeng Hou On Thu, May 16, 2013 at 10:50:07AM +0800, Barry Song wrote: > From: Xiaomeng Hou <Xiaomeng.Hou-kQvG35nSl+M@public.gmane.org> > > if we initilize i2c bus by module_init, there are some devices which want > initialization earlier than i2c and could not do that in time, so move i2c > driver initilization to subsys_initcall and make i2c ready before devices > init. > > Signed-off-by: Xiaomeng Hou <Xiaomeng.Hou-kQvG35nSl+M@public.gmane.org> > Signed-off-by: Barry Song <Baohua.Song-kQvG35nSl+M@public.gmane.org> What about deferred probing? ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] i2c: sirf: move driver init from module_init to subsys_initcall 2013-05-16 9:38 ` Wolfram Sang @ 2013-05-16 10:25 ` Barry Song [not found] ` <CAGsJ_4zVOF8-g=emEGgP3atxkWdxMaQQiVZrZkht_WueTriSnw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 0 siblings, 1 reply; 12+ messages in thread From: Barry Song @ 2013-05-16 10:25 UTC (permalink / raw) To: Wolfram Sang Cc: workgroup.linux, Xiaomeng Hou, linux-i2c, linux-arm-kernel, Barry Song 2013/5/16 Wolfram Sang <wsa@the-dreams.de>: > On Thu, May 16, 2013 at 10:50:07AM +0800, Barry Song wrote: >> From: Xiaomeng Hou <Xiaomeng.Hou@csr.com> >> >> if we initilize i2c bus by module_init, there are some devices which want >> initialization earlier than i2c and could not do that in time, so move i2c >> driver initilization to subsys_initcall and make i2c ready before devices >> init. >> >> Signed-off-by: Xiaomeng Hou <Xiaomeng.Hou@csr.com> >> Signed-off-by: Barry Song <Baohua.Song@csr.com> > > What about deferred probing? deferred probing could work but could not work for automative. what we really want is that devices begin to work as early as possible. we want i2c clients like lcd, camera begin to show images as early as possible as an automative requirement. -barry ^ permalink raw reply [flat|nested] 12+ messages in thread
[parent not found: <CAGsJ_4zVOF8-g=emEGgP3atxkWdxMaQQiVZrZkht_WueTriSnw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>]
* Re: [PATCH] i2c: sirf: move driver init from module_init to subsys_initcall [not found] ` <CAGsJ_4zVOF8-g=emEGgP3atxkWdxMaQQiVZrZkht_WueTriSnw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> @ 2013-05-25 20:10 ` Mark Brown [not found] ` <20130525201032.GD32043-GFdadSzt00ze9xe1eoZjHA@public.gmane.org> 0 siblings, 1 reply; 12+ messages in thread From: Mark Brown @ 2013-05-25 20:10 UTC (permalink / raw) To: Barry Song Cc: Wolfram Sang, workgroup.linux-kQvG35nSl+M, Xiaomeng Hou, linux-i2c-u79uwXL29TY76Z2rM5mHXA, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Barry Song [-- Attachment #1: Type: text/plain, Size: 822 bytes --] On Thu, May 16, 2013 at 06:25:39PM +0800, Barry Song wrote: > 2013/5/16 Wolfram Sang <wsa-z923LK4zBo2bacvFa/9K2g@public.gmane.org>: > > What about deferred probing? > deferred probing could work but could not work for automative. > what we really want is that devices begin to work as early as > possible. we want i2c clients like lcd, camera begin to show images as > early as possible as an automative requirement. Probe deferral should have at most a mimimal impact on the boot time - it's pretty much just changing the order providing the probe functions aren't excessively slow to defer. If the probe functions are taking a long time to defer that's probably what needs looking at. If it really is probe deferral itself that's too slow then we ought to be looking at improving that rather than boding around it. [-- Attachment #2: Digital signature --] [-- Type: application/pgp-signature, Size: 836 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
[parent not found: <20130525201032.GD32043-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>]
* Re: [PATCH] i2c: sirf: move driver init from module_init to subsys_initcall [not found] ` <20130525201032.GD32043-GFdadSzt00ze9xe1eoZjHA@public.gmane.org> @ 2013-05-27 1:54 ` Barry Song [not found] ` <CAGsJ_4y6SY6nNkbW+Yh8jx0WB4Pi9MO1W3xVZcrQcedGeD5ogQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 0 siblings, 1 reply; 12+ messages in thread From: Barry Song @ 2013-05-27 1:54 UTC (permalink / raw) To: Mark Brown Cc: Wolfram Sang, workgroup.linux-kQvG35nSl+M, Xiaomeng Hou, linux-i2c-u79uwXL29TY76Z2rM5mHXA, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Barry Song 2013/5/26 Mark Brown <broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>: > On Thu, May 16, 2013 at 06:25:39PM +0800, Barry Song wrote: >> 2013/5/16 Wolfram Sang <wsa-z923LK4zBo2bacvFa/9K2g@public.gmane.org>: > >> > What about deferred probing? > >> deferred probing could work but could not work for automative. >> what we really want is that devices begin to work as early as >> possible. we want i2c clients like lcd, camera begin to show images as >> early as possible as an automative requirement. > > Probe deferral should have at most a mimimal impact on the boot time - > it's pretty much just changing the order providing the probe functions > aren't excessively slow to defer. If the probe functions are taking a > long time to defer that's probably what needs looking at. > > If it really is probe deferral itself that's too slow then we ought to > be looking at improving that rather than boding around it. Mark, the case is not that deferred probing is slow or not. deferred probing is pretty good. the case is that we want to i2c and media connected with i2c probed earlier than other devices. in auto infotainment devices, we actually do some hacking in kernel that makes rear view work earlier than other device driver initialization with a kernel thread which take care of backing-car policy not only mechanism. that means, we make camera work to see backview image even earlier than other drivers' initialization. we don't want media deferred to wait for i2c. we want make some early jobs ready earlier. -barry ^ permalink raw reply [flat|nested] 12+ messages in thread
[parent not found: <CAGsJ_4y6SY6nNkbW+Yh8jx0WB4Pi9MO1W3xVZcrQcedGeD5ogQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>]
* Re: [PATCH] i2c: sirf: move driver init from module_init to subsys_initcall [not found] ` <CAGsJ_4y6SY6nNkbW+Yh8jx0WB4Pi9MO1W3xVZcrQcedGeD5ogQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> @ 2013-05-27 12:16 ` Mark Brown [not found] ` <20130527121658.GA3660-GFdadSzt00ze9xe1eoZjHA@public.gmane.org> 0 siblings, 1 reply; 12+ messages in thread From: Mark Brown @ 2013-05-27 12:16 UTC (permalink / raw) To: Barry Song Cc: Wolfram Sang, workgroup.linux-kQvG35nSl+M, Xiaomeng Hou, linux-i2c-u79uwXL29TY76Z2rM5mHXA, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Barry Song [-- Attachment #1: Type: text/plain, Size: 885 bytes --] On Mon, May 27, 2013 at 09:54:56AM +0800, Barry Song wrote: > Mark, the case is not that deferred probing is slow or not. deferred > probing is pretty good. > the case is that we want to i2c and media connected with i2c probed > earlier than other devices. > in auto infotainment devices, we actually do some hacking in kernel > that makes rear view work earlier than other device driver > initialization with a kernel thread which take care of backing-car > policy not only mechanism. that means, we make camera work to see > backview image even earlier than other drivers' initialization. > we don't want media deferred to wait for i2c. we want make some early > jobs ready earlier. So this change makes no practical difference in mainline and exists to support out of tree hacks for performance? It doesn't seem like that big a patch to carry along with the out of tree stuff... [-- Attachment #2: Digital signature --] [-- Type: application/pgp-signature, Size: 836 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
[parent not found: <20130527121658.GA3660-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>]
* Re: [PATCH] i2c: sirf: move driver init from module_init to subsys_initcall [not found] ` <20130527121658.GA3660-GFdadSzt00ze9xe1eoZjHA@public.gmane.org> @ 2013-05-27 15:36 ` Barry Song [not found] ` <CAGsJ_4w867BhFvVze5BNaYheW75pMcOGhscz3wSZiia-neP59w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 0 siblings, 1 reply; 12+ messages in thread From: Barry Song @ 2013-05-27 15:36 UTC (permalink / raw) To: Mark Brown Cc: Wolfram Sang, workgroup.linux-kQvG35nSl+M, Xiaomeng Hou, linux-i2c-u79uwXL29TY76Z2rM5mHXA, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Barry Song 2013/5/27 Mark Brown <broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>: > On Mon, May 27, 2013 at 09:54:56AM +0800, Barry Song wrote: > >> Mark, the case is not that deferred probing is slow or not. deferred >> probing is pretty good. >> the case is that we want to i2c and media connected with i2c probed >> earlier than other devices. >> in auto infotainment devices, we actually do some hacking in kernel >> that makes rear view work earlier than other device driver >> initialization with a kernel thread which take care of backing-car >> policy not only mechanism. that means, we make camera work to see >> backview image even earlier than other drivers' initialization. >> we don't want media deferred to wait for i2c. we want make some early >> jobs ready earlier. > > So this change makes no practical difference in mainline and exists to > support out of tree hacks for performance? It doesn't seem like that > big a patch to carry along with the out of tree stuff... yes. but i don't think we are easy to make those out-of-mainline hacks be in mainline. but this patch is both ok to mainline and local tree. making local tree and mainline same as many as possible decreases our maintaince efforts totally. -barry ^ permalink raw reply [flat|nested] 12+ messages in thread
[parent not found: <CAGsJ_4w867BhFvVze5BNaYheW75pMcOGhscz3wSZiia-neP59w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>]
* Re: [PATCH] i2c: sirf: move driver init from module_init to subsys_initcall [not found] ` <CAGsJ_4w867BhFvVze5BNaYheW75pMcOGhscz3wSZiia-neP59w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> @ 2013-06-10 13:45 ` Wolfram Sang 2013-06-11 1:14 ` Barry Song 0 siblings, 1 reply; 12+ messages in thread From: Wolfram Sang @ 2013-06-10 13:45 UTC (permalink / raw) To: Barry Song Cc: Mark Brown, workgroup.linux-kQvG35nSl+M, Xiaomeng Hou, linux-i2c-u79uwXL29TY76Z2rM5mHXA, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Barry Song [-- Attachment #1: Type: text/plain, Size: 1566 bytes --] On Mon, May 27, 2013 at 11:36:14PM +0800, Barry Song wrote: > 2013/5/27 Mark Brown <broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>: > > On Mon, May 27, 2013 at 09:54:56AM +0800, Barry Song wrote: > > > >> Mark, the case is not that deferred probing is slow or not. deferred > >> probing is pretty good. > >> the case is that we want to i2c and media connected with i2c probed > >> earlier than other devices. > >> in auto infotainment devices, we actually do some hacking in kernel > >> that makes rear view work earlier than other device driver > >> initialization with a kernel thread which take care of backing-car > >> policy not only mechanism. that means, we make camera work to see > >> backview image even earlier than other drivers' initialization. > >> we don't want media deferred to wait for i2c. we want make some early > >> jobs ready earlier. > > > > So this change makes no practical difference in mainline and exists to > > support out of tree hacks for performance? It doesn't seem like that > > big a patch to carry along with the out of tree stuff... > > yes. but i don't think we are easy to make those out-of-mainline hacks > be in mainline. but this patch is both ok to mainline and local tree. > making local tree and mainline same as many as possible decreases our > maintaince efforts totally. I understand that, yet I agree with Mark. The mainline idea is to use deferred probing to make sure all components come up correctly. In fact, I wish for patches removing subsys_initcall with deferred probing. [-- Attachment #2: Digital signature --] [-- Type: application/pgp-signature, Size: 836 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] i2c: sirf: move driver init from module_init to subsys_initcall 2013-06-10 13:45 ` Wolfram Sang @ 2013-06-11 1:14 ` Barry Song [not found] ` <CAGsJ_4y4svi0TbUKK1aAW1McM5rFoo5Vb9rGPweq-sHJ2NN5cQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 0 siblings, 1 reply; 12+ messages in thread From: Barry Song @ 2013-06-11 1:14 UTC (permalink / raw) To: Wolfram Sang Cc: Mark Brown, workgroup.linux-kQvG35nSl+M, Xiaomeng Hou, linux-i2c-u79uwXL29TY76Z2rM5mHXA, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Barry Song 2013/6/10 Wolfram Sang <wsa-z923LK4zBo2bacvFa/9K2g@public.gmane.org>: > On Mon, May 27, 2013 at 11:36:14PM +0800, Barry Song wrote: >> 2013/5/27 Mark Brown <broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>: >> > On Mon, May 27, 2013 at 09:54:56AM +0800, Barry Song wrote: >> > >> >> Mark, the case is not that deferred probing is slow or not. deferred >> >> probing is pretty good. >> >> the case is that we want to i2c and media connected with i2c probed >> >> earlier than other devices. >> >> in auto infotainment devices, we actually do some hacking in kernel >> >> that makes rear view work earlier than other device driver >> >> initialization with a kernel thread which take care of backing-car >> >> policy not only mechanism. that means, we make camera work to see >> >> backview image even earlier than other drivers' initialization. >> >> we don't want media deferred to wait for i2c. we want make some early >> >> jobs ready earlier. >> > >> > So this change makes no practical difference in mainline and exists to >> > support out of tree hacks for performance? It doesn't seem like that >> > big a patch to carry along with the out of tree stuff... >> >> yes. but i don't think we are easy to make those out-of-mainline hacks >> be in mainline. but this patch is both ok to mainline and local tree. >> making local tree and mainline same as many as possible decreases our >> maintaince efforts totally. > > I understand that, yet I agree with Mark. The mainline idea is to use > deferred probing to make sure all components come up correctly. In fact, > I wish for patches removing subsys_initcall with deferred probing. hi Wolfram, the mainline idea you mentioned is that you don't care about any early device, which means some devices want to start earlier than others in some real automative user scenerioes. but i think another important idea is that mainline codes come from branches of different vendors and serve final users of those drivers, but not only make source codes no difference to all environments. the auto users i2c-sirf serves, here, actually means some differences with PC/tablet/mobilephone. we don't make codes good-looking by losing functionality and not close to final users. anyway, it is up to you to decide. i can definitely maintain the difference locally. > -barry ^ permalink raw reply [flat|nested] 12+ messages in thread
[parent not found: <CAGsJ_4y4svi0TbUKK1aAW1McM5rFoo5Vb9rGPweq-sHJ2NN5cQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>]
* Re: [PATCH] i2c: sirf: move driver init from module_init to subsys_initcall [not found] ` <CAGsJ_4y4svi0TbUKK1aAW1McM5rFoo5Vb9rGPweq-sHJ2NN5cQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> @ 2013-06-11 8:48 ` Mark Brown [not found] ` <20130611084827.GS1403-GFdadSzt00ze9xe1eoZjHA@public.gmane.org> 0 siblings, 1 reply; 12+ messages in thread From: Mark Brown @ 2013-06-11 8:48 UTC (permalink / raw) To: Barry Song Cc: Wolfram Sang, workgroup.linux-kQvG35nSl+M, Xiaomeng Hou, linux-i2c-u79uwXL29TY76Z2rM5mHXA, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Barry Song [-- Attachment #1: Type: text/plain, Size: 950 bytes --] On Tue, Jun 11, 2013 at 09:14:41AM +0800, Barry Song wrote: > the mainline idea you mentioned is that you don't care about any early > device, which means some devices want to start earlier than others in > some real automative user scenerioes. > but i think another important idea is that mainline codes come from > branches of different vendors and serve final users of those drivers, > but not only make source codes no difference to all environments. the > auto users i2c-sirf serves, here, actually means some differences with > PC/tablet/mobilephone. we don't make codes good-looking by losing > functionality and not close to final users. It's not that people don't care about these users, it's that people don't care too much about out of tree users. Part of the goal here is to convince people working on such applications that they should make mainline better for everyone so that you don't need external code to make the kernel useful. [-- Attachment #2: Digital signature --] [-- Type: application/pgp-signature, Size: 836 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
[parent not found: <20130611084827.GS1403-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>]
* Re: [PATCH] i2c: sirf: move driver init from module_init to subsys_initcall [not found] ` <20130611084827.GS1403-GFdadSzt00ze9xe1eoZjHA@public.gmane.org> @ 2013-06-11 11:13 ` Barry Song [not found] ` <CAGsJ_4wH=mNxBTqizKjJR2YhmVQa=iprfUmVYy8oz7MZeLfkqg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 0 siblings, 1 reply; 12+ messages in thread From: Barry Song @ 2013-06-11 11:13 UTC (permalink / raw) To: Mark Brown Cc: Wolfram Sang, workgroup.linux-kQvG35nSl+M, Xiaomeng Hou, linux-i2c-u79uwXL29TY76Z2rM5mHXA, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Barry Song 2013/6/11 Mark Brown <broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>: > On Tue, Jun 11, 2013 at 09:14:41AM +0800, Barry Song wrote: > >> the mainline idea you mentioned is that you don't care about any early >> device, which means some devices want to start earlier than others in >> some real automative user scenerioes. >> but i think another important idea is that mainline codes come from >> branches of different vendors and serve final users of those drivers, >> but not only make source codes no difference to all environments. the >> auto users i2c-sirf serves, here, actually means some differences with >> PC/tablet/mobilephone. we don't make codes good-looking by losing >> functionality and not close to final users. > > It's not that people don't care about these users, it's that people > don't care too much about out of tree users. Part of the goal here is > to convince people working on such applications that they should make > mainline better for everyone so that you don't need external code to > make the kernel useful. Mark, then this is really confusing me. for this reason, the target should be making this out-of-tree stuff be inside the tree. to make i2c-sirf "mainline better and not need external code", the target should be making this external code not external but become internal. otherwise, my mainline users will always need this external code. -barry ^ permalink raw reply [flat|nested] 12+ messages in thread
[parent not found: <CAGsJ_4wH=mNxBTqizKjJR2YhmVQa=iprfUmVYy8oz7MZeLfkqg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>]
* Re: [PATCH] i2c: sirf: move driver init from module_init to subsys_initcall [not found] ` <CAGsJ_4wH=mNxBTqizKjJR2YhmVQa=iprfUmVYy8oz7MZeLfkqg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> @ 2013-06-11 12:10 ` Mark Brown 0 siblings, 0 replies; 12+ messages in thread From: Mark Brown @ 2013-06-11 12:10 UTC (permalink / raw) To: Barry Song Cc: Wolfram Sang, workgroup.linux-kQvG35nSl+M, Xiaomeng Hou, linux-i2c-u79uwXL29TY76Z2rM5mHXA, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Barry Song [-- Attachment #1: Type: text/plain, Size: 1077 bytes --] On Tue, Jun 11, 2013 at 07:13:33PM +0800, Barry Song wrote: > 2013/6/11 Mark Brown <broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>: > > It's not that people don't care about these users, it's that people > > don't care too much about out of tree users. Part of the goal here is > > to convince people working on such applications that they should make > > mainline better for everyone so that you don't need external code to > > make the kernel useful. > Mark, then this is really confusing me. > for this reason, the target should be making this out-of-tree stuff be > inside the tree. to make i2c-sirf "mainline better and not need > external code", the target should be making this external code not > external but become internal. otherwise, my mainline users will always > need this external code. It's not just this one bit of code that they're relying on, this also gets built on with other things that are also out of tree. The thing we need to do is figure out what problem the solution as a whole is fixing and then make sure that mainline can deal with that. [-- Attachment #2: Digital signature --] [-- Type: application/pgp-signature, Size: 836 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2013-06-11 12:10 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-16 2:50 [PATCH] i2c: sirf: move driver init from module_init to subsys_initcall Barry Song
[not found] ` <1368672607-5536-1-git-send-email-Baohua.Song-kQvG35nSl+M@public.gmane.org>
2013-05-16 9:38 ` Wolfram Sang
2013-05-16 10:25 ` Barry Song
[not found] ` <CAGsJ_4zVOF8-g=emEGgP3atxkWdxMaQQiVZrZkht_WueTriSnw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2013-05-25 20:10 ` Mark Brown
[not found] ` <20130525201032.GD32043-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2013-05-27 1:54 ` Barry Song
[not found] ` <CAGsJ_4y6SY6nNkbW+Yh8jx0WB4Pi9MO1W3xVZcrQcedGeD5ogQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2013-05-27 12:16 ` Mark Brown
[not found] ` <20130527121658.GA3660-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2013-05-27 15:36 ` Barry Song
[not found] ` <CAGsJ_4w867BhFvVze5BNaYheW75pMcOGhscz3wSZiia-neP59w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2013-06-10 13:45 ` Wolfram Sang
2013-06-11 1:14 ` Barry Song
[not found] ` <CAGsJ_4y4svi0TbUKK1aAW1McM5rFoo5Vb9rGPweq-sHJ2NN5cQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2013-06-11 8:48 ` Mark Brown
[not found] ` <20130611084827.GS1403-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2013-06-11 11:13 ` Barry Song
[not found] ` <CAGsJ_4wH=mNxBTqizKjJR2YhmVQa=iprfUmVYy8oz7MZeLfkqg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2013-06-11 12:10 ` Mark Brown
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).