[PATCH v9 3/5] drm: handle HAS_IOPORT dependencies

2024-10-27 Thread Niklas Schnelle
In a future patch HAS_IOPORT=n will disable inb()/outb() and friends at compile time. We thus need to add HAS_IOPORT as dependency for those drivers using them. In the bochs driver there is optional MMIO support detected at runtime, warn if this isn't taken when HAS_IOPORT is not defined. There is

Re: [PATCH v9 3/5] drm: handle HAS_IOPORT dependencies

2024-10-25 Thread Thomas Zimmermann
Am 24.10.24 um 19:54 schrieb Niklas Schnelle: In a future patch HAS_IOPORT=n will disable inb()/outb() and friends at compile time. We thus need to add HAS_IOPORT as dependency for those drivers using them. In the bochs driver there is optional MMIO support detected at runtime, warn if this is