Re: [PATCH 2/2] i2c, i2c_imc: Add DIMM bus code

2015-03-08 Thread Andy Lutomirski
On Sat, Mar 7, 2015 at 8:03 AM, Guenter Roeck wrote: > On 03/06/2015 06:50 PM, Andy Lutomirski wrote: >> >> Add i2c_scan_dimm_bus to declare that a particular i2c_adapter >> contains DIMMs. This will probe (and autoload modules!) for useful >> SMBUS devices that live on DIMMs. i2c_imc calls it.

Re: [PATCH 2/2] i2c, i2c_imc: Add DIMM bus code

2015-03-07 Thread Guenter Roeck
On 03/06/2015 06:50 PM, Andy Lutomirski wrote: Add i2c_scan_dimm_bus to declare that a particular i2c_adapter contains DIMMs. This will probe (and autoload modules!) for useful SMBUS devices that live on DIMMs. i2c_imc calls it. As more SMBUS-addressable DIMM components become supported, this

Re: [PATCH 2/2] i2c, i2c_imc: Add DIMM bus code

2015-03-07 Thread Paul Bolle
Just a license nit, I'm afraid. Andy Lutomirski schreef op vr 06-03-2015 om 18:50 [-0800]: > --- /dev/null > +++ b/drivers/i2c/busses/dimm-bus.c > @@ -0,0 +1,97 @@ > +/* > + * Copyright (c) 2013 Andrew Lutomirski > + * > + * This program is free software; you can redistribute it and/or modify > +

[PATCH 2/2] i2c, i2c_imc: Add DIMM bus code

2015-03-06 Thread Andy Lutomirski
Add i2c_scan_dimm_bus to declare that a particular i2c_adapter contains DIMMs. This will probe (and autoload modules!) for useful SMBUS devices that live on DIMMs. i2c_imc calls it. As more SMBUS-addressable DIMM components become supported, this code can be extended to probe for them. Signed-o