Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Merge tag 'platform-drivers-x86-mellanox-init-v6.6' into fixes

Fixes in the mellanox init branch due for v6.6.

platform-drivers-x86-mellanox-init-v6.6: v6.6-rc1 + fixes in
the platform-drivers-x86-mellanox-init branch to avoid a feature
conflict during the v6.7 merge window.

+3 -2
+3 -2
drivers/platform/x86/mlx-platform.c
··· 6514 6514 return 0; 6515 6515 6516 6516 fail_mlxplat_i2c_mux_topology_init: 6517 + platform_device_unregister(priv->pdev_i2c); 6517 6518 fail_platform_i2c_register: 6518 6519 fail_mlxplat_mlxcpld_verify_bus_topology: 6519 6520 return err; ··· 6522 6521 6523 6522 static void mlxplat_i2c_main_exit(struct mlxplat_priv *priv) 6524 6523 { 6524 + mlxplat_pre_exit(priv); 6525 6525 mlxplat_i2c_mux_topology_exit(priv); 6526 6526 if (priv->pdev_i2c) 6527 6527 platform_device_unregister(priv->pdev_i2c); ··· 6599 6597 6600 6598 fail_register_reboot_notifier: 6601 6599 fail_regcache_sync: 6602 - mlxplat_pre_exit(priv); 6600 + mlxplat_i2c_main_exit(priv); 6603 6601 fail_mlxplat_i2c_main_init: 6604 6602 fail_regmap_write: 6605 6603 fail_alloc: ··· 6616 6614 pm_power_off = NULL; 6617 6615 if (mlxplat_reboot_nb) 6618 6616 unregister_reboot_notifier(mlxplat_reboot_nb); 6619 - mlxplat_pre_exit(priv); 6620 6617 mlxplat_i2c_main_exit(priv); 6621 6618 mlxplat_post_exit(); 6622 6619 return 0;