mirror of
https://github.com/lkl/linux.git
synced 2025-12-19 08:03:01 +09:00
While working on a drm driver that doesn't need the i2c algobit stuff I noticed that DRM selects this code even though only 8 drivers actually use it. While also only some drivers use i2c, keep the select for I2C for the next cleanup patch. Still prepare this already by also selecting I2C for the individual drivers. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Reviewed-by: Javier Martinez Canillas <javierm@redhat.com> Signed-off-by: Javier Martinez Canillas <javierm@redhat.com> Link: https://patchwork.freedesktop.org/patch/msgid/20221219083627.1401627-1-u.kleine-koenig@pengutronix.de
14 lines
450 B
Plaintext
14 lines
450 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
config DRM_MGAG200
|
|
tristate "Matrox G200"
|
|
depends on DRM && PCI && MMU
|
|
select DRM_GEM_SHMEM_HELPER
|
|
select DRM_KMS_HELPER
|
|
select I2C
|
|
select I2C_ALGOBIT
|
|
help
|
|
This is a KMS driver for Matrox G200 chips. It supports the original
|
|
MGA G200 desktop chips and the server variants. It requires 0.3.0
|
|
of the modesetting userspace driver, and a version of mga driver
|
|
that will fail on KMS enabled devices.
|