mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-17 09:43:59 +08:00
serial: xilinx_uartps: Remove leftover __exit_p()
__exit_p() need to be removed after the __devexit removal from the driver. Warning log: drivers/tty/serial/xilinx_uartps.c:996:12: warning: 'xuartps_remove' defined but not used [-Wunused-function] Signed-off-by: Michal Simek <michal.simek@xilinx.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
aea95548c0
commit
eb51d917a7
@ -1044,7 +1044,7 @@ MODULE_DEVICE_TABLE(of, xuartps_of_match);
|
||||
|
||||
static struct platform_driver xuartps_platform_driver = {
|
||||
.probe = xuartps_probe, /* Probe method */
|
||||
.remove = __exit_p(xuartps_remove), /* Detach method */
|
||||
.remove = xuartps_remove, /* Detach method */
|
||||
.suspend = xuartps_suspend, /* Suspend */
|
||||
.resume = xuartps_resume, /* Resume after a suspend */
|
||||
.driver = {
|
||||
|
Loading…
Reference in New Issue
Block a user