Skip to content

Commit

Permalink
drivers/video: fsl-diu-fb: set the driver name to "fsl-diu-fb"
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Timur Tabi authored and Florian Tobias Schandinat committed Sep 18, 2011
1 parent bada04f commit f8c6bf6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/video/fsl-diu-fb.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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,
},
Expand Down

0 comments on commit f8c6bf6

Please sign in to comment.