From 34d7b459f69d15dccee53c9b09d754555afbf3dd Mon Sep 17 00:00:00 2001 From: Robby Cai Date: Mon, 9 Nov 2009 12:01:29 +0800 Subject: [PATCH] ENGR00118079-1 fix mismatch of names of SPI device and driver change the spi driver's name Signed-off-by: Robby Cai --- drivers/spi/spi_stmp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/spi/spi_stmp.c b/drivers/spi/spi_stmp.c index 5b1022b24a4..dc49b132e7c 100644 --- a/drivers/spi/spi_stmp.c +++ b/drivers/spi/spi_stmp.c @@ -665,7 +665,7 @@ static struct platform_driver stmp_spi_driver = { .probe = stmp_spi_probe, .remove = __devexit_p(stmp_spi_remove), .driver = { - .name = "stmp37xx_ssp", + .name = "stmp3xxx_ssp", .owner = THIS_MODULE, }, .suspend = stmp_spi_suspend,