lindebugfs,rtw88,rtw89: correct module dependencies

In f697b9432d the name of the PSEUDOFS
was changed from debugsfs to lindebugfs but the in-tree consumers
were not updated now leaving the drivers not loading if compiled
with debugfs support due to missing dependencies.

MFC after:		3 days
X-MFC-with-after:	f697b9432d
This commit is contained in:
Bjoern A. Zeeb 2022-09-25 21:36:10 +00:00
parent f808c43ad9
commit 1a2b55732f
2 changed files with 2 additions and 2 deletions

View File

@ -1955,6 +1955,6 @@ MODULE_VERSION(rtw_pci, 1);
MODULE_DEPEND(rtw_pci, linuxkpi, 1, 1, 1);
MODULE_DEPEND(rtw_pci, linuxkpi_wlan, 1, 1, 1);
#ifdef CONFIG_RTW88_DEBUGFS
MODULE_DEPEND(rtw_pci, debugfs, 1, 1, 1);
MODULE_DEPEND(rtw_pci, lindebugfs, 1, 1, 1);
#endif
#endif

View File

@ -3937,6 +3937,6 @@ MODULE_VERSION(rtw89_pci, 1);
MODULE_DEPEND(rtw89_pci, linuxkpi, 1, 1, 1);
MODULE_DEPEND(rtw89_pci, linuxkpi_wlan, 1, 1, 1);
#ifdef CONFIG_RTW89_DEBUGFS
MODULE_DEPEND(rtw89_pci, debugfs, 1, 1, 1);
MODULE_DEPEND(rtw89_pci, lindebugfs, 1, 1, 1);
#endif
#endif