Commit f8c6bf6a authored by Timur Tabi's avatar Timur Tabi Committed by Florian Tobias Schandinat

drivers/video: fsl-diu-fb: set the driver name to "fsl-diu-fb"

Use the name "fsl-diu-fb" in the Freescale DIU framebuffer driver
during registrations.
Signed-off-by: default avatarTimur Tabi <timur@freescale.com>
Signed-off-by: default avatarFlorian Tobias Schandinat <FlorianSchandinat@gmx.de>
parent bada04fc
...@@ -1274,7 +1274,7 @@ static int request_irq_local(int irq) ...@@ -1274,7 +1274,7 @@ static int request_irq_local(int irq)
/* Read to clear the status */ /* Read to clear the status */
in_be32(&hw->int_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) { if (!ret) {
ints = INT_PARERR | INT_LS_BF_VS; ints = INT_PARERR | INT_LS_BF_VS;
#if !defined(CONFIG_NOT_COHERENT_CACHE) #if !defined(CONFIG_NOT_COHERENT_CACHE)
...@@ -1634,7 +1634,7 @@ MODULE_DEVICE_TABLE(of, fsl_diu_match); ...@@ -1634,7 +1634,7 @@ MODULE_DEVICE_TABLE(of, fsl_diu_match);
static struct platform_driver fsl_diu_driver = { static struct platform_driver fsl_diu_driver = {
.driver = { .driver = {
.name = "fsl_diu", .name = "fsl-diu-fb",
.owner = THIS_MODULE, .owner = THIS_MODULE,
.of_match_table = fsl_diu_match, .of_match_table = fsl_diu_match,
}, },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment