]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
iio: gyro: mpu3050: Move iio_device_register() to correct location
authorEthan Tidmore <ethantidmore06@gmail.com>
Tue, 24 Feb 2026 22:48:17 +0000 (16:48 -0600)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Sun, 1 Mar 2026 11:20:11 +0000 (11:20 +0000)
commit4c05799449108fb0e0a6bd30e65fffc71e60db4d
treec13e0de716d0adb210338e8e26b2a88084eff5d2
parent4216db1043a3be72ef9c2b7b9f393d7fa72496e6
iio: gyro: mpu3050: Move iio_device_register() to correct location

iio_device_register() should be at the end of the probe function to
prevent race conditions.

Place iio_device_register() at the end of the probe function and place
iio_device_unregister() accordingly.

Fixes: 3904b28efb2c7 ("iio: gyro: Add driver for the MPU-3050 gyroscope")
Suggested-by: Jonathan Cameron <jic23@kernel.org>
Reviewed-by: Linus Walleij <linusw@kernel.org>
Signed-off-by: Ethan Tidmore <ethantidmore06@gmail.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@intel.com>
Cc: <Stable@vger.kernel.org>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/gyro/mpu3050-core.c