From: Shahar Avidar Date: Fri, 5 Apr 2024 07:40:00 +0000 (+0300) Subject: staging: pi433: Reorder pi433_exit cleanup calls. X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=e68e319fc948aac7a67c88a2854d28c03f7891dc;p=linux.git staging: pi433: Reorder pi433_exit cleanup calls. debugfs_remove was called out of order. Ensure pi433 init & exit have reverse function calls order. Signed-off-by: Shahar Avidar Reviewed-by: Dan Carpenter Link: https://lore.kernel.org/r/20240405074000.3481217-8-ikobh7@gmail.com Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/pi433/pi433_if.c b/drivers/staging/pi433/pi433_if.c index 633daf50a4016..befddf6bcea91 100644 --- a/drivers/staging/pi433/pi433_if.c +++ b/drivers/staging/pi433/pi433_if.c @@ -1425,9 +1425,9 @@ module_init(pi433_init); static void __exit pi433_exit(void) { spi_unregister_driver(&pi433_spi_driver); + debugfs_remove(root_dir); class_unregister(&pi433_class); unregister_chrdev(MAJOR(pi433_devt), pi433_spi_driver.driver.name); - debugfs_remove(root_dir); } module_exit(pi433_exit);