Re: arch_initcall time

2008-02-18 Thread Josh Boyer
On Mon, 18 Feb 2008 12:42:40 -0600 Olof Johansson <[EMAIL PROTECTED]> wrote: > On Mon, Feb 18, 2008 at 11:32:14AM -0700, Grant Likely wrote: > > On Feb 18, 2008 11:31 AM, Grant Likely <[EMAIL PROTECTED]> wrote: > > > On Feb 18, 2008 11:28 AM, Sean MacLennan <[EMAIL PROTECTED]> wrote: > > > > I nee

Re: arch_initcall time

2008-02-18 Thread Olof Johansson
On Mon, Feb 18, 2008 at 11:32:14AM -0700, Grant Likely wrote: > On Feb 18, 2008 11:31 AM, Grant Likely <[EMAIL PROTECTED]> wrote: > > On Feb 18, 2008 11:28 AM, Sean MacLennan <[EMAIL PROTECTED]> wrote: > > > I need to call i2c_register_board_info for the new i2c style ad7414 > > > driver. This need

Re: arch_initcall time

2008-02-18 Thread Grant Likely
On Feb 18, 2008 11:31 AM, Grant Likely <[EMAIL PROTECTED]> wrote: > On Feb 18, 2008 11:28 AM, Sean MacLennan <[EMAIL PROTECTED]> wrote: > > I need to call i2c_register_board_info for the new i2c style ad7414 > > driver. This needs to be called at arch initcall time. Currently I just > > do this: >

Re: arch_initcall time

2008-02-18 Thread Grant Likely
On Feb 18, 2008 11:28 AM, Sean MacLennan <[EMAIL PROTECTED]> wrote: > I need to call i2c_register_board_info for the new i2c style ad7414 > driver. This needs to be called at arch initcall time. Currently I just > do this: > > static int __init warp_arch_init(void) > { > i2c_register_board_

arch_initcall time

2008-02-18 Thread Sean MacLennan
I need to call i2c_register_board_info for the new i2c style ad7414 driver. This needs to be called at arch initcall time. Currently I just do this: static int __init warp_arch_init(void) { i2c_register_board_info(0, warp_i2c_info, ARRAY_SIZE(warp_i2c_info)); return 0; } arch_ini