diff pwc.orig/pwc-if.c pwc/pwc-if.c 55a56 > - D. Hiepler: module-parameter to skip camera reset in pwc_video_open() 133a135 > static int no_reset = 0; 1188,1190c1190,1197 < /* Initialize the webcam to sane value */ < pwc_set_brightness(pdev, 0x7fff); < pwc_set_agc(pdev, 1, 0); --- > /* Initialize the webcam to sane value > (if not overriden by module-parameter) */ > if(no_reset == 0) > { > PWC_DEBUG_OPEN("Resetting camera to sane state.\n"); > pwc_set_brightness(pdev, 0x7fff); > pwc_set_agc(pdev, 1, 0); > } 1854a1862 > 1868a1877 > module_param(no_reset, int, 0444); 1878a1888 > MODULE_PARM_DESC(no_reset, "Don't reset device when opened. (Preserve camera-settings while module is loaded)");