From: Omar Ramirez Luna Date: Thu, 7 Oct 2010 05:45:10 +0000 (-0500) Subject: staging: tidspbridge: bind driver name to device name X-Git-Tag: v2.6.37-rc1~60^2~3^2~297 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=95624b2d75617bd16ffe4d698b645f468fbd0f20;p=pandora-kernel.git staging: tidspbridge: bind driver name to device name Since the device name has changed use the new name to bind the driver to it. Signed-off-by: Omar Ramirez Luna Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/tidspbridge/rmgr/drv_interface.c b/drivers/staging/tidspbridge/rmgr/drv_interface.c index 63052b0e3426..1981e461edf4 100644 --- a/drivers/staging/tidspbridge/rmgr/drv_interface.c +++ b/drivers/staging/tidspbridge/rmgr/drv_interface.c @@ -66,7 +66,6 @@ #include #endif -#define BRIDGE_NAME "C6410" /* ----------------------------------- Globals */ #define DRIVER_NAME "DspBridge" #define DSPBRIDGE_VERSION "0.3" @@ -465,7 +464,7 @@ static int BRIDGE_RESUME(struct platform_device *pdev) static struct platform_driver bridge_driver = { .driver = { - .name = BRIDGE_NAME, + .name = "omap-dsp", }, .probe = omap34_xx_bridge_probe, .remove = __devexit_p(omap34_xx_bridge_remove),