Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: dgrp: add dgrp to the build

Kconfig and Makefile changes to add dgrp to the build system.

Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Bill Pemberton and committed by
Greg Kroah-Hartman
7b6d45c2 0b52b749

+12 -3
+2
drivers/staging/Kconfig
··· 136 136 137 137 source "drivers/staging/omap-thermal/Kconfig" 138 138 139 + source "drivers/staging/dgrp/Kconfig" 140 + 139 141 endif # STAGING
+1
drivers/staging/Makefile
··· 60 60 obj-$(CONFIG_WIMAX_GDM72XX) += gdm72xx/ 61 61 obj-$(CONFIG_CSR_WIFI) += csr/ 62 62 obj-$(CONFIG_OMAP_BANDGAP) += omap-thermal/ 63 + obj-$(CONFIG_DGRP) += dgrp/
+9 -3
drivers/staging/dgrp/TODO
··· 1 1 - Use configfs for config stuff. This will require changes to the 2 2 user space code. 3 3 4 - - Check the calls to tty_register_device. In particular, check to see 5 - if there should be some handling for IS_ERR(classp). 6 - 7 4 - dgrp_send() and dgrp_receive() could use some refactoring 5 + 6 + - Don't automatically create CHAN_MAX (64) channel array entries for 7 + every device as many devices are going to have much less than 64 8 + channels. 9 + 10 + - The locking needs to be checked. It seems haphazardly done in most 11 + places. 12 + 13 + - Check Kconfig dependencies