if (QGuiApplication::platformName() == "eglfs" || QGuiApplication::platformName() == "linuxfb") { qputenv("SDL_VIDEODRIVER", "kmsdrm"); } #endif GlobalCommandLineParser parser; GlobalCommandLineParser::ParseResult commandLineParserResult = parser.parse(app.arguments()); switch (commandLine...
This patchset allows runtime suspend parameters override within the LLD itself instead of waiting for userspace to control the power management, and make UFS as the first user of this capability. Stanley Chu (3): scsi: core: allow auto suspend override by low-level driver scsi: ufs: overrid...
> > + unsigned rpm_autosuspend_on:1; /* Runtime autosuspend */ > > atomic_t disk_events_disable_depth; /* disable depth for disk events */ > The "_on" part in the variable name "rpm_autosuspend_on" is probably > redundant and the comment could have been more elaborate. Anyway:...
resume callbacks. If the userspace doesn't enable the runtime suspend the underlying hardware will be always on even when it is not doing any useful work and thus wasting power. Some low-level drivers for the controllers can efficiently use runtime power management to reduce power consumption ...
Some low-level drivers for the controllers can efficiently use runtime power management to reduce power consumption and improve battery life. Allow runtime suspend parameters override within the LLD itself instead of waiting for userspace to control the power management. ...