Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 109802
b: refs/heads/master
c: 42cde43
h: refs/heads/master
v: v3
  • Loading branch information
Ben Dooks authored and Linus Torvalds committed Sep 13, 2008
1 parent a3da8f0 commit 0a21a5a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3aa04f1b07352be89960bddca4db0d5d8c09510c
refs/heads/master: 42cde4309b8f2671610be049352df2f8716e8809
6 changes: 3 additions & 3 deletions trunk/drivers/spi/spi_s3c24xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ static int s3c24xx_spi_resume(struct platform_device *pdev)
#endif

MODULE_ALIAS("platform:s3c2410-spi");
static struct platform_driver s3c24xx_spidrv = {
static struct platform_driver s3c24xx_spi_driver = {
.remove = __exit_p(s3c24xx_spi_remove),
.suspend = s3c24xx_spi_suspend,
.resume = s3c24xx_spi_resume,
Expand All @@ -442,12 +442,12 @@ static struct platform_driver s3c24xx_spidrv = {

static int __init s3c24xx_spi_init(void)
{
return platform_driver_probe(&s3c24xx_spidrv, s3c24xx_spi_probe);
return platform_driver_probe(&s3c24xx_spi_driver, s3c24xx_spi_probe);
}

static void __exit s3c24xx_spi_exit(void)
{
platform_driver_unregister(&s3c24xx_spidrv);
platform_driver_unregister(&s3c24xx_spi_driver);
}

module_init(s3c24xx_spi_init);
Expand Down

0 comments on commit 0a21a5a

Please sign in to comment.