RE: [PATCH 128/196] Kobject: the cris iop_fw_load.c code is broken

Previous thread: [GIT PATCH] driver core patches against 2.6.24 by Greg KH on Friday, January 25, 2008 - 3:11 am. (272 messages)

Next thread: none
To: 'Greg Kroah-Hartman' <gregkh@...>, <linux-kernel@...>
Cc: Mikael Starvik <mikael.starvik@...>, 'Kay Sievers' <kay.sievers@...>
Date: Friday, January 25, 2008 - 4:01 am

Yes, we are currently in the process of cleaning this up for all our device
drivers.
Thanks!

-----Original Message-----
From: Greg Kroah-Hartman [mailto:gregkh@suse.de]
Sent: Friday, January 25, 2008 8:33 AM
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman; Mikael Starvik; Kay Sievers
Subject: [PATCH 128/196] Kobject: the cris iop_fw_load.c code is broken

This code is really really really broken. So much so that it's almost
impossible to fix with a simple patch, so just comment out the offending
registration with the kobject core, and mark the driver as broken.

The problem is that the code is trying to register a "raw" struct
device, which is not allowed. struct device is only for use within the
driver model. This is being done to try to use the firmware layer which
wants a struct device. To properly fix this, use something easy, like a
platform device, which is a struct device and can be used for this kind
of thing.

Cc: Mikael Starvik <starvik@axis.com>
Cc: Kay Sievers <kay.sievers@vrfy.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
---
arch/cris/arch-v32/drivers/iop_fw_load.c | 11 +++++++++++
1 files changed, 11 insertions(+), 0 deletions(-)

diff --git a/arch/cris/arch-v32/drivers/iop_fw_load.c
b/arch/cris/arch-v32/drivers/iop_fw_load.c
index 11f9895..f4bdc1d 100644
--- a/arch/cris/arch-v32/drivers/iop_fw_load.c
+++ b/arch/cris/arch-v32/drivers/iop_fw_load.c
@@ -20,6 +20,9 @@

#define IOP_TIMEOUT 100

+#error "This driver is broken with regard to its driver core usage."
+#error "Please contact <greg@kroah.com> for details on how to fix it
properly."
+
static struct device iop_spu_device[2] = {
{ .bus_id = "iop-spu0", },
{ .bus_id = "iop-spu1", },
@@ -192,6 +195,13 @@ int iop_start_mpu(unsigned int start_addr)

static int __init iop_fw_load_init(void)
{
+#if 0
+ /*
+ * static struct devices can not be added directly to sysfs by
ignoring
+ * the driver model infrastructure. To fix thi...

Previous thread: [GIT PATCH] driver core patches against 2.6.24 by Greg KH on Friday, January 25, 2008 - 3:11 am. (272 messages)

Next thread: none