]> www.infradead.org Git - users/willy/pagecache.git/commit
ptp: vmclock: Set driver data before its usage
authorThomas Weißschuh <thomas.weissschuh@linutronix.de>
Fri, 7 Feb 2025 09:39:03 +0000 (10:39 +0100)
committerPaolo Abeni <pabeni@redhat.com>
Tue, 11 Feb 2025 09:20:52 +0000 (10:20 +0100)
commitf7d07cd4f77d77f366c8ffbb8ba8b61f614e5fce
tree08ac96843033b1a2b8423f5e594d60d3b3c17f63
parent7b07b040257c1b658ef3eca86e4b6ae02d65069c
ptp: vmclock: Set driver data before its usage

If vmclock_ptp_register() fails during probing, vmclock_remove() is
called to clean up the ptp clock and misc device.
It uses dev_get_drvdata() to access the vmclock state.
However the driver data is not yet set at this point.

Assign the driver data earlier.

Fixes: 205032724226 ("ptp: Add support for the AMZNC10C 'vmclock' device")
Cc: stable@vger.kernel.org
Signed-off-by: Thomas Weißschuh <thomas.weissschuh@linutronix.de>
Reviewed-by: Mateusz Polchlopek <mateusz.polchlopek@intel.com>
Acked-by: Richard Cochran <richardcochran@gmail.com>
Reviewed-by: David Woodhouse <dwmw@amazon.co.uk>
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
drivers/ptp/ptp_vmclock.c