|
@@ -366,7 +366,7 @@ msg_done:
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-static int __init orion_spi_reset(struct orion_spi *orion_spi)
|
|
|
+static int orion_spi_reset(struct orion_spi *orion_spi)
|
|
|
{
|
|
|
/* Verify that the CS is deasserted */
|
|
|
orion_spi_set_cs(orion_spi, 0);
|
|
@@ -396,7 +396,7 @@ static int orion_spi_setup(struct spi_device *spi)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-static int __init orion_spi_probe(struct platform_device *pdev)
|
|
|
+static int orion_spi_probe(struct platform_device *pdev)
|
|
|
{
|
|
|
struct spi_master *master;
|
|
|
struct orion_spi *spi;
|
|
@@ -479,7 +479,7 @@ out:
|
|
|
}
|
|
|
|
|
|
|
|
|
-static int __exit orion_spi_remove(struct platform_device *pdev)
|
|
|
+static int orion_spi_remove(struct platform_device *pdev)
|
|
|
{
|
|
|
struct spi_master *master;
|
|
|
struct resource *r;
|
|
@@ -513,7 +513,7 @@ static struct platform_driver orion_spi_driver = {
|
|
|
.owner = THIS_MODULE,
|
|
|
.of_match_table = of_match_ptr(orion_spi_of_match_table),
|
|
|
},
|
|
|
- .remove = __exit_p(orion_spi_remove),
|
|
|
+ .remove = orion_spi_remove,
|
|
|
};
|
|
|
|
|
|
static int __init orion_spi_init(void)
|