lkml.org 
[lkml]   [2009]   [Jan]   [23]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectIs this a bug related s3c24xx-spi-gpio driver
HI,

The .name field is different between platform_device and platform_driver

in drivers/spi/spi_s3c24xx_gpio.c
static struct platform_driver s3c2410_spigpio_drv = {
.probe = s3c2410_spigpio_probe,
.remove = s3c2410_spigpio_remove,
.suspend = s3c2410_spigpio_suspend,
.resume = s3c2410_spigpio_resume,
.driver = {
.name = "spi_s3c24xx_gpio",
.owner = THIS_MODULE,
},
};


but
in arch/arm/mach-s3c2410/mach-qt2410.c

static struct platform_device qt2410_spi = {
.name = "s3c24xx-spi-gpio",
.id = 1,
.dev = {
.platform_data = &spi_gpio_cfg,
},
};

in arch/arm/mach-s3c2410/mach-jive.c
static struct platform_device jive_device_lcdspi = {
.name = "s3c24xx-spi-gpio",
.id = 1,
.num_resources = 0,
.dev.platform_data = &jive_lcd_spi,
};

in sound/soc/s3c24xx/ smdk2440_wm8956.c

smdk2440_spi_device = platform_device_alloc("s3c24xx-spi-gpio",-1);


Peter Meng








\
 
 \ /
  Last update: 2009-01-24 03:45    [W:0.456 / U:0.032 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site