Skip to content

Commit

Permalink
spi/dw_spi: change to EXPORT_SYMBOL_GPL for exported APIs
Browse files Browse the repository at this point in the history
Signed-off-by: Feng Tang <feng.tang@intel.com>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
  • Loading branch information
Feng Tang authored and Grant Likely committed Dec 24, 2010
1 parent ebf45b7 commit 79290a2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/spi/dw_spi.c
Original file line number Diff line number Diff line change
Expand Up @@ -941,7 +941,7 @@ int __devinit dw_spi_add_host(struct dw_spi *dws)
exit:
return ret;
}
EXPORT_SYMBOL(dw_spi_add_host);
EXPORT_SYMBOL_GPL(dw_spi_add_host);

void __devexit dw_spi_remove_host(struct dw_spi *dws)
{
Expand All @@ -965,7 +965,7 @@ void __devexit dw_spi_remove_host(struct dw_spi *dws)
/* Disconnect from the SPI framework */
spi_unregister_master(dws->master);
}
EXPORT_SYMBOL(dw_spi_remove_host);
EXPORT_SYMBOL_GPL(dw_spi_remove_host);

int dw_spi_suspend_host(struct dw_spi *dws)
{
Expand All @@ -978,7 +978,7 @@ int dw_spi_suspend_host(struct dw_spi *dws)
spi_set_clk(dws, 0);
return ret;
}
EXPORT_SYMBOL(dw_spi_suspend_host);
EXPORT_SYMBOL_GPL(dw_spi_suspend_host);

int dw_spi_resume_host(struct dw_spi *dws)
{
Expand All @@ -990,7 +990,7 @@ int dw_spi_resume_host(struct dw_spi *dws)
dev_err(&dws->master->dev, "fail to start queue (%d)\n", ret);
return ret;
}
EXPORT_SYMBOL(dw_spi_resume_host);
EXPORT_SYMBOL_GPL(dw_spi_resume_host);

MODULE_AUTHOR("Feng Tang <feng.tang@intel.com>");
MODULE_DESCRIPTION("Driver for DesignWare SPI controller core");
Expand Down

0 comments on commit 79290a2

Please sign in to comment.