Skip to content

Commit

Permalink
video/ili9320: do not mark exported functions __devexit
Browse files Browse the repository at this point in the history
No symbol can be exported when the section is discarded - the only
solution I could think of is not to mark symbols as __devexit
when they are exported.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
Signed-off-by: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
  • Loading branch information
Arnd Bergmann authored and Florian Tobias Schandinat committed Jun 9, 2012
1 parent 6f32d03 commit ff94404
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/video/backlight/ili9320.c
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ int __devinit ili9320_probe_spi(struct spi_device *spi,

EXPORT_SYMBOL_GPL(ili9320_probe_spi);

int __devexit ili9320_remove(struct ili9320 *ili)
int ili9320_remove(struct ili9320 *ili)
{
ili9320_power(ili, FB_BLANK_POWERDOWN);

Expand Down

0 comments on commit ff94404

Please sign in to comment.