On Mon, 2025-12-15 at 11:40 +0000, Gary Guo wrote: > > > > +static mut DEBUGFS_ROOT: Option<Dir> = None; > > Please don't use `static mut`. If you need anything associcated with the > lifetime of the driver, please just put it into the module.
If I do that, then how do I access it from gsp.rs (the last patch in this series)?
