On Thu, Jul 4, 2024 at 7:03 AM Greg KH <gregkh@xxxxxxxxxxxxxxxxxxx> wrote: > > On Wed, Jul 03, 2024 at 05:33:57PM +0200, Jocelyn Falempe wrote: > > Jocelyn Falempe (4): > > drm/panic: Add integer scaling to blit() > > drm/rect: add drm_rect_overlap() > > drm/panic: simplify logo handling > > drm/panic: Add a qr_code panic screen > > > > drivers/gpu/drm/Kconfig | 29 + > > drivers/gpu/drm/Makefile | 1 + > > drivers/gpu/drm/drm_drv.c | 3 + > > drivers/gpu/drm/drm_panic.c | 338 +++++++++-- > > drivers/gpu/drm/drm_panic_qr.rs | 989 ++++++++++++++++++++++++++++++++ > > Wait, we can put .rs files in any directory now? I didn't think that > worked properly yet. Yes, but Rust code outside of rust/ cannot expose a Rust API that Rust code elsewhere can use. Only C apis can be exposed. Alice