mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-25 02:32:08 +03:00
drivers: Fix platform_driver remove for Linux v6.11
In Linux v6.11, the 'platform_driver' structure 'remove' callback was updated to return void instead of 'int'. Update all the impacted drivers as necessary to fix this. Bug 4749580 Change-Id: I3bb5c549777f7ccad0e3f870373fdd25726ad7ed Signed-off-by: Jon Hunter <jonathanh@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3182878 Reviewed-by: Brad Griffis <bgriffis@nvidia.com> Tested-by: Brad Griffis <bgriffis@nvidia.com> GVS: buildbot_gerritrpt <buildbot_gerritrpt@nvidia.com>
This commit is contained in:
committed by
mobile promotions
parent
e7b93be004
commit
951b2423a8
@@ -15,6 +15,8 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <nvidia/conftest.h>
|
||||
|
||||
#include <dce.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/interrupt.h>
|
||||
@@ -318,6 +320,18 @@ static const struct dev_pm_ops dce_pm_ops = {
|
||||
};
|
||||
#endif
|
||||
|
||||
#if defined(NV_PLATFORM_DRIVER_STRUCT_REMOVE_RETURNS_VOID) /* Linux v6.11 */
|
||||
static inline void tegra_dce_remove_wrapper(struct platform_device *pdev)
|
||||
{
|
||||
tegra_dce_remove(pdev);
|
||||
}
|
||||
#else
|
||||
static inline int tegra_dce_remove_wrapper(struct platform_device *pdev)
|
||||
{
|
||||
return tegra_dce_remove(pdev);
|
||||
}
|
||||
#endif
|
||||
|
||||
static struct platform_driver tegra_dce_driver = {
|
||||
.driver = {
|
||||
.name = "tegra-dce",
|
||||
@@ -328,7 +342,7 @@ static struct platform_driver tegra_dce_driver = {
|
||||
#endif
|
||||
},
|
||||
.probe = tegra_dce_probe,
|
||||
.remove = tegra_dce_remove,
|
||||
.remove = tegra_dce_remove_wrapper,
|
||||
};
|
||||
module_platform_driver(tegra_dce_driver);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user