mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 21:50:53 +07:00
misc: do not mark exported functions __devexit
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: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
2dc60c589b
commit
0ed0d579cb
@ -749,7 +749,7 @@ int __devinit ad_dpot_probe(struct device *dev,
|
||||
}
|
||||
EXPORT_SYMBOL(ad_dpot_probe);
|
||||
|
||||
__devexit int ad_dpot_remove(struct device *dev)
|
||||
int ad_dpot_remove(struct device *dev)
|
||||
{
|
||||
struct dpot_data *data = dev_get_drvdata(dev);
|
||||
int i;
|
||||
|
Loading…
Reference in New Issue
Block a user