LinuxKPI: device: add a pr_debug("TODO") call to device_release_driver()

The logic in device_release_driver() got disabled in 93b14194ac
and since left alone.  Add a pr_debug() call so we have a chance to
notice if that code is actually still in need to be fixed and re-enabled.

Sponsored by:	The FreeBSD Foundation

(cherry picked from commit fc9666d0fc)
This commit is contained in:
Bjoern A. Zeeb 2025-12-03 01:09:24 +00:00
parent c55874da4c
commit 0f496780de

View file

@ -557,6 +557,7 @@ static inline void
device_release_driver(struct device *dev)
{
pr_debug("%s: TODO\n", __func__);
#if 0
/* This leads to panics. Disable temporarily. Keep to rework. */