Hi all,
below, you'll find a very small patch: In the current state, platform bus _never_ activates (= calls probe() callback on) the driver, because the driver's name has a dash and the device's name has an underscore. I made this horrible change _after_ I tested the final patch, which I posted on Saturday. Sorry.
From: Joachim Foerster JOFT@gmx.de
Names inside struct platform_device and struct platform_driver seem to need underscores instead of dashes.
(Patch for Linus' master branch, date 2007/08/08 _including_ my patches sent on Saturday)
Signed-off-by: Joachim Foerster JOFT@gmx.de --- arch/ppc/syslib/virtex_devices.c | 2 +- sound/drivers/ml403-ac97cr.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/ppc/syslib/virtex_devices.c b/arch/ppc/syslib/virtex_devices.c index d0b04d6..9fa10b1 100644 --- a/arch/ppc/syslib/virtex_devices.c +++ b/arch/ppc/syslib/virtex_devices.c @@ -122,7 +122,7 @@ }
#define XPAR_AC97_CONTROLLER_REFERENCE(num) { \ - .name = "ml403-ac97cr", \ + .name = "ml403_ac97cr", \ .id = num, \ .num_resources = 3, \ .resource = (struct resource[]) { \ diff --git a/sound/drivers/ml403-ac97cr.c b/sound/drivers/ml403-ac97cr.c index 2222315..2636249 100644 --- a/sound/drivers/ml403-ac97cr.c +++ b/sound/drivers/ml403-ac97cr.c @@ -66,7 +66,7 @@ #include "pcm-indirect2.h"
-#define SND_ML403_AC97CR_DRIVER "ml403-ac97cr" +#define SND_ML403_AC97CR_DRIVER "ml403_ac97cr"
MODULE_AUTHOR("Joachim Foerster JOFT@gmx.de"); MODULE_DESCRIPTION("Xilinx ML403 AC97 Controller Reference");