Skip to content

Commit

Permalink
fix: replaced '.remove_new' with
Browse files Browse the repository at this point in the history
'.remove' for fit platform_driver struct

fix #3

torvalds/linux@e70140b
  • Loading branch information
ferstar committed Dec 20, 2024
1 parent 0f512d1 commit 8ee2c0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ideapad-laptop-tb.c
Original file line number Diff line number Diff line change
Expand Up @@ -2019,7 +2019,7 @@ MODULE_DEVICE_TABLE(acpi, ideapad_device_ids);

static struct platform_driver ideapad_acpi_driver = {
.probe = ideapad_acpi_add,
.remove_new = ideapad_acpi_remove,
.remove = ideapad_acpi_remove,
.driver = {
.name = "ideapad_acpi",
.pm = &ideapad_pm,
Expand Down

0 comments on commit 8ee2c0a

Please sign in to comment.