Linux Audio

Check our new training course

Linux debugging, profiling, tracing and performance analysis training

Mar 24-27, 2025, special US time zones
Register
Loading...
v3.15
 
 1if ARCH_DOVE
 2
 3menu "Marvell Dove Implementations"
 4
 5config DOVE_LEGACY
 6	bool
 7
 8config MACH_DOVE_DB
 9	bool "Marvell DB-MV88AP510 Development Board"
10	select DOVE_LEGACY
11	select I2C_BOARDINFO
12	help
13	  Say 'Y' here if you want your kernel to support the
14	  Marvell DB-MV88AP510 Development Board.
15
16config MACH_CM_A510
17	bool "CompuLab CM-A510 Board"
18	select DOVE_LEGACY
19	help
20	  Say 'Y' here if you want your kernel to support the
21	  CompuLab CM-A510 Board.
22
23endmenu
24
25endif
v4.17
 1# SPDX-License-Identifier: GPL-2.0
 2if ARCH_DOVE
 3
 4menu "Marvell Dove Implementations"
 5
 6config DOVE_LEGACY
 7	bool
 8
 9config MACH_DOVE_DB
10	bool "Marvell DB-MV88AP510 Development Board"
11	select DOVE_LEGACY
12	select I2C_BOARDINFO if I2C
13	help
14	  Say 'Y' here if you want your kernel to support the
15	  Marvell DB-MV88AP510 Development Board.
16
17config MACH_CM_A510
18	bool "CompuLab CM-A510 Board"
19	select DOVE_LEGACY
20	help
21	  Say 'Y' here if you want your kernel to support the
22	  CompuLab CM-A510 Board.
23
24endmenu
25
26endif