Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 6282 → Rev 6283

/drivers/video/drm/i915/main.c
14,7 → 14,7
#include "bitmap.h"
#include "i915_kos32.h"
 
#define DRV_NAME "i915 v4.4.1"
#define DRV_NAME "i915 v4.4.2-dbg2"
 
#define I915_DEV_CLOSE 0
#define I915_DEV_INIT 1
131,9 → 131,7
if( GetService("DISPLAY") != 0 )
return 0;
 
printf("\n%s build %s %s\nusage: i915 [options]\n"
"-f\n"
"--fbsize <0-9> Set framebuffer size in megabytes (default: 16)\n",
printf("\n%s build %s %s\nusage: i915 [options]\n",
DRV_NAME, __DATE__, __TIME__);
 
printf("--rc6 <-1,0-7> Enable power-saving render C-state 6.\n"
172,7 → 170,6
{
{"log", required_argument, 0, 'l'},
{"mode", required_argument, 0, 'm'},
{"fbsize",required_argument, 0, 'f'},
{"video", required_argument, 0, 'v'},
{"rc6", required_argument, 0, OPTION_RC6},
{"fbc", required_argument, 0, OPTION_FBC},
181,7 → 178,7
 
int option_index = 0;
 
c = getopt_long (argc, argv, "f:l:m:v:",
c = getopt_long (argc, argv, "l:m:v:",
long_options, &option_index);
 
if (c == -1)
199,11 → 196,6
printf("i915.fbc = %d\n",i915.enable_fbc);
break;
 
case 'f':
i915.fbsize = my_atoi(&optarg);
printf("i915.fbsize =%d\n",i915.fbsize);
break;
 
case 'l':
i915.log_file = optarg;
break;