search for: drm_bus_platform

Displaying 1 result from an estimated 1 matches for "drm_bus_platform".

2024 Jul 26
2
[PATCH v2 02/37] drm/nouveau: handle pci/tegra drm_dev_{alloc, register} from common code
...t; However, I guess you refer to the loader stuff in Mesa that uses > drmGetDevices2() from libdrm? This stuff indeed whitelists busses it accepts to > report DRM device from: > > { "/pci", DRM_BUS_PCI }, > { "/usb", DRM_BUS_USB }, > { "/platform", DRM_BUS_PLATFORM }, > { "/spi", DRM_BUS_PLATFORM }, > { "/host1x", DRM_BUS_HOST1X }, > { "/virtio", DRM_BUS_VIRTIO }, > > Not a big deal to just add it for a new driver, but obviously we can't just do > this for an existing one. > >> Fortunately it did...