Messages in this thread Patch in this message |  | | | Date | Thu, 19 Oct 2006 11:21:54 +0200 | | From | Hans-Christian Egtvedt <> | | Subject | [PATCH] [2.6.18] resend of spi set kset of master class dev explicitly |
| |
Hello,
<quote Imre Deak from Thu, 12 Jan 2006 21:18:54 +0200> In order for spi_busnum_to_master to work spi master devices must be linked into the spi_master_class.subsys.kset list. At the moment the default class_obj_subsys.kset is used and we can't enumerate the master devices. </quote>
Patch is updated to match the 2.6.18 kernel.
Signed-off-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
-- With kind regards,
Hans-Christian Egtvedt Applications Engineer - AVR Applications Lab --- a/drivers/spi/spi.c 2006-10-19 11:13:21.000000000 +0200 +++ b/drivers/spi/spi.c 2006-10-19 11:13:04.000000000 +0200 @@ -367,6 +367,7 @@ spi_alloc_master(struct device *dev, uns class_device_initialize(&master->cdev); master->cdev.class = &spi_master_class; + kobj_set_kset_s(&master->cdev, spi_master_class.subsys); master->cdev.dev = get_device(dev); spi_master_set_devdata(master, &master[1]); |  |