diff options
| author | Ojaswin Mujoo <[email protected]> | 2021-08-02 23:12:10 +0530 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2021-08-10 12:08:46 +0200 |
| commit | bb13dc2b3d8a7c6157ecaf680c435e7b2fbe4613 (patch) | |
| tree | 041ae3a31bbbfae7edd2fcc053211eb4d6ef696c | |
| parent | 96020566a5756d667252a42a26ddf1628dbb49d6 (diff) | |
staging: vchiq: Set $CONFIG_BCM2835_VCHIQ to imply $CONFIG_VCHIQ_CDEV
Before $CONFIG_VCHIQ_CDEV was defined, the vchiq cdev used to be created
unconditionally when CONFIG_BCM2835_VCHIQ=y. When an earlier commit
introduced the new config, its default behavior was set to disabled,
which might surprise some unsuspecting users. Hence, modify
CONFIG_BCM2835_VCHIQ to imply CONFIG_VCHIQ_CDEV
Reviewed-by: Stefan Wahren <[email protected]>
Signed-off-by: Ojaswin Mujoo <[email protected]>
Link: https://lore.kernel.org/r/da53207b24bc37f166b05c6835087becdc6b5b4d.1627925241.git.ojaswin98@gmail.com
Signed-off-by: Greg Kroah-Hartman <[email protected]>
| -rw-r--r-- | drivers/staging/vc04_services/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/staging/vc04_services/Kconfig b/drivers/staging/vc04_services/Kconfig index 63caa6818d37..ad44b80f13ca 100644 --- a/drivers/staging/vc04_services/Kconfig +++ b/drivers/staging/vc04_services/Kconfig @@ -13,6 +13,7 @@ if BCM_VIDEOCORE config BCM2835_VCHIQ tristate "BCM2835 VCHIQ" + imply VCHIQ_CDEV help Kernel to VideoCore communication interface for the BCM2835 family of products. |