├── Kconfig ├── Makefile ├── README.md ├── dkms.conf ├── snd-i2s_rpi-km.mk ├── snd-i2s_rpi.c ├── snd-i2s_rpi.h └── version.h /Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencardev/snd-i2s_rpi/HEAD/Kconfig -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencardev/snd-i2s_rpi/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencardev/snd-i2s_rpi/HEAD/README.md -------------------------------------------------------------------------------- /dkms.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencardev/snd-i2s_rpi/HEAD/dkms.conf -------------------------------------------------------------------------------- /snd-i2s_rpi-km.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencardev/snd-i2s_rpi/HEAD/snd-i2s_rpi-km.mk -------------------------------------------------------------------------------- /snd-i2s_rpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencardev/snd-i2s_rpi/HEAD/snd-i2s_rpi.c -------------------------------------------------------------------------------- /snd-i2s_rpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencardev/snd-i2s_rpi/HEAD/snd-i2s_rpi.h -------------------------------------------------------------------------------- /version.h: -------------------------------------------------------------------------------- 1 | #define SND_I2S_RPI_VERSION "0.0.2" 2 | --------------------------------------------------------------------------------