spi-falcon.c (df9b42963f2d010ae3163a894ce22cf6b27cd344) | spi-falcon.c (fd4a319bc933ae93e68935b21924a9ca4ba2d060) |
---|---|
1/* 2 * This program is free software; you can redistribute it and/or modify it 3 * under the terms of the GNU General Public License version 2 as published 4 * by the Free Software Foundation. 5 * 6 * Copyright (C) 2012 Thomas Langer <thomas.langer@lantiq.com> 7 */ 8 --- 389 unchanged lines hidden (view full) --- 398 } 399 400 m->status = ret; 401 m->complete(m->context); 402 403 return 0; 404} 405 | 1/* 2 * This program is free software; you can redistribute it and/or modify it 3 * under the terms of the GNU General Public License version 2 as published 4 * by the Free Software Foundation. 5 * 6 * Copyright (C) 2012 Thomas Langer <thomas.langer@lantiq.com> 7 */ 8 --- 389 unchanged lines hidden (view full) --- 398 } 399 400 m->status = ret; 401 m->complete(m->context); 402 403 return 0; 404} 405 |
406static int __devinit falcon_sflash_probe(struct platform_device *pdev) | 406static int falcon_sflash_probe(struct platform_device *pdev) |
407{ 408 struct falcon_sflash *priv; 409 struct spi_master *master; 410 int ret; 411 412 if (ltq_boot_select() != BS_SPI) { 413 dev_err(&pdev->dev, "invalid bootstrap options\n"); 414 return -ENODEV; --- 18 unchanged lines hidden (view full) --- 433 platform_set_drvdata(pdev, priv); 434 435 ret = spi_register_master(master); 436 if (ret) 437 spi_master_put(master); 438 return ret; 439} 440 | 407{ 408 struct falcon_sflash *priv; 409 struct spi_master *master; 410 int ret; 411 412 if (ltq_boot_select() != BS_SPI) { 413 dev_err(&pdev->dev, "invalid bootstrap options\n"); 414 return -ENODEV; --- 18 unchanged lines hidden (view full) --- 433 platform_set_drvdata(pdev, priv); 434 435 ret = spi_register_master(master); 436 if (ret) 437 spi_master_put(master); 438 return ret; 439} 440 |
441static int __devexit falcon_sflash_remove(struct platform_device *pdev) | 441static int falcon_sflash_remove(struct platform_device *pdev) |
442{ 443 struct falcon_sflash *priv = platform_get_drvdata(pdev); 444 445 spi_unregister_master(priv->master); 446 447 return 0; 448} 449 450static const struct of_device_id falcon_sflash_match[] = { 451 { .compatible = "lantiq,sflash-falcon" }, 452 {}, 453}; 454MODULE_DEVICE_TABLE(of, falcon_sflash_match); 455 456static struct platform_driver falcon_sflash_driver = { 457 .probe = falcon_sflash_probe, | 442{ 443 struct falcon_sflash *priv = platform_get_drvdata(pdev); 444 445 spi_unregister_master(priv->master); 446 447 return 0; 448} 449 450static const struct of_device_id falcon_sflash_match[] = { 451 { .compatible = "lantiq,sflash-falcon" }, 452 {}, 453}; 454MODULE_DEVICE_TABLE(of, falcon_sflash_match); 455 456static struct platform_driver falcon_sflash_driver = { 457 .probe = falcon_sflash_probe, |
458 .remove = __devexit_p(falcon_sflash_remove), | 458 .remove = falcon_sflash_remove, |
459 .driver = { 460 .name = DRV_NAME, 461 .owner = THIS_MODULE, 462 .of_match_table = falcon_sflash_match, 463 } 464}; 465 466module_platform_driver(falcon_sflash_driver); 467 468MODULE_LICENSE("GPL"); 469MODULE_DESCRIPTION("Lantiq Falcon SPI/SFLASH controller driver"); | 459 .driver = { 460 .name = DRV_NAME, 461 .owner = THIS_MODULE, 462 .of_match_table = falcon_sflash_match, 463 } 464}; 465 466module_platform_driver(falcon_sflash_driver); 467 468MODULE_LICENSE("GPL"); 469MODULE_DESCRIPTION("Lantiq Falcon SPI/SFLASH controller driver"); |