summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile6
-rw-r--r--linux/drivers/media/video/bttv-input.c1
-rw-r--r--linux/drivers/media/video/saa7134/saa7134-alsa.c5
3 files changed, 9 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 25fca34b7..1f11bcb3f 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,11 @@
BUILD_DIR := $(shell pwd)/v4l
REPO_PULL := http://linuxtv.org/hg/v4l-dvb
-ifneq ($(CHANGE_LOG_LOGIN),)
+ifeq ($(REPO_PUSH),)
+ ifneq ($(CHANGE_LOG_LOGIN),)
REPO_PUSH := ssh://$(CHANGE_LOG_LOGIN)@linuxtv.org/hg/v4l-dvb
-else
+ else
REPO_PUSH := ssh://linuxtv.org/hg/v4l-dvb
+ endif
endif
ifeq ($(EDITOR),)
diff --git a/linux/drivers/media/video/bttv-input.c b/linux/drivers/media/video/bttv-input.c
index 245fccc8e..8a619ddb1 100644
--- a/linux/drivers/media/video/bttv-input.c
+++ b/linux/drivers/media/video/bttv-input.c
@@ -330,6 +330,7 @@ int bttv_input_init(struct bttv *btv)
ir->polling = 50; // ms
break;
case BTTV_BOARD_CONCEPTRONIC_CTVFMI2:
+ case BTTV_BOARD_CONTVFMI:
ir_codes = ir_codes_pixelview;
ir->mask_keycode = 0x001F00;
ir->mask_keyup = 0x006000;
diff --git a/linux/drivers/media/video/saa7134/saa7134-alsa.c b/linux/drivers/media/video/saa7134/saa7134-alsa.c
index 1339b18ad..5f1f32ecb 100644
--- a/linux/drivers/media/video/saa7134/saa7134-alsa.c
+++ b/linux/drivers/media/video/saa7134/saa7134-alsa.c
@@ -57,15 +57,18 @@ MODULE_PARM_DESC(debug,"enable debug messages [alsa]");
static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
-static int enable[SNDRV_CARDS] = {1, [1 ... (SNDRV_CARDS - 1)] = 0};
+static int enable[SNDRV_CARDS] = {1, [1 ... (SNDRV_CARDS - 1)] = 1};
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,10)
static int dummy;
module_param_array(index, int, dummy, 0444);
+module_param_array(enable, int, dummy, 0444);
#else
module_param_array(index, int, NULL, 0444);
+module_param_array(enable, int, NULL, 0444);
#endif
MODULE_PARM_DESC(index, "Index value for SAA7134 capture interface(s).");
+MODULE_PARM_DESC(enable, "Enable (or not) the SAA7134 capture interface(s).");
#define dprintk(fmt, arg...) if (debug) \
printk(KERN_DEBUG "%s/alsa: " fmt, dev->name , ##arg)