drivers/video: fsl-diu-fb: set the driver name to "fsl-diu-fb"
authorTimur Tabi <timur@freescale.com>
Thu, 15 Sep 2011 21:44:53 +0000 (16:44 -0500)
committerFlorian Tobias Schandinat <FlorianSchandinat@gmx.de>
Sun, 18 Sep 2011 20:08:57 +0000 (20:08 +0000)
Use the name "fsl-diu-fb" in the Freescale DIU framebuffer driver
during registrations.

Signed-off-by: Timur Tabi <timur@freescale.com>
Signed-off-by: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
drivers/video/fsl-diu-fb.c

index 4d22399..19bfbf5 100644 (file)
@@ -1274,7 +1274,7 @@ static int request_irq_local(int irq)
        /* Read to clear the status */
        in_be32(&hw->int_status);
 
-       ret = request_irq(irq, fsl_diu_isr, 0, "diu", NULL);
+       ret = request_irq(irq, fsl_diu_isr, 0, "fsl-diu-fb", NULL);
        if (!ret) {
                ints = INT_PARERR | INT_LS_BF_VS;
 #if !defined(CONFIG_NOT_COHERENT_CACHE)
@@ -1634,7 +1634,7 @@ MODULE_DEVICE_TABLE(of, fsl_diu_match);
 
 static struct platform_driver fsl_diu_driver = {
        .driver = {
-               .name = "fsl_diu",
+               .name = "fsl-diu-fb",
                .owner = THIS_MODULE,
                .of_match_table = fsl_diu_match,
        },