Skip to content

Commit bb92de1

Browse files
committed
Adding Pimidi kernel module.
Signed-off-by: Giedrius Trainavičius <[email protected]>
1 parent 57b528e commit bb92de1

File tree

3 files changed

+1131
-0
lines changed

3 files changed

+1131
-0
lines changed

sound/drivers/Kconfig

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -263,4 +263,14 @@ config SND_AC97_POWER_SAVE_DEFAULT
263263

264264
See SND_AC97_POWER_SAVE for more details.
265265

266+
config SND_PIMIDI
267+
tristate "Pimidi driver"
268+
depends on SND_SEQUENCER && CRC8
269+
select SND_RAWMIDI
270+
help
271+
Say Y here to include support for Blokas Pimidi.
272+
273+
To compile this driver as a module, choose M here: the module
274+
will be called snd-pimidi.
275+
266276
endif # SND_DRIVERS

sound/drivers/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ snd-aloop-objs := aloop.o
99
snd-mtpav-objs := mtpav.o
1010
snd-mts64-objs := mts64.o
1111
snd-pcmtest-objs := pcmtest.o
12+
snd-pimidi-objs := pimidi.o
1213
snd-portman2x4-objs := portman2x4.o
1314
snd-serial-u16550-objs := serial-u16550.o
1415
snd-serial-generic-objs := serial-generic.o
@@ -23,6 +24,7 @@ obj-$(CONFIG_SND_SERIAL_U16550) += snd-serial-u16550.o
2324
obj-$(CONFIG_SND_SERIAL_GENERIC) += snd-serial-generic.o
2425
obj-$(CONFIG_SND_MTPAV) += snd-mtpav.o
2526
obj-$(CONFIG_SND_MTS64) += snd-mts64.o
27+
obj-$(CONFIG_SND_PIMIDI) += snd-pimidi.o
2628
obj-$(CONFIG_SND_PORTMAN2X4) += snd-portman2x4.o
2729

2830
obj-$(CONFIG_SND) += opl3/ opl4/ mpu401/ vx/ pcsp/

0 commit comments

Comments
 (0)