]> mj.ucw.cz Git - libucw.git/commitdiff
Too much copying and pasting :-)
authorMartin Mares <mj@ucw.cz>
Sun, 19 Oct 2003 16:46:06 +0000 (16:46 +0000)
committerMartin Mares <mj@ucw.cz>
Sun, 19 Oct 2003 16:46:06 +0000 (16:46 +0000)
lib/fb-mmap.c

index 462fdaea80bcbdfee254c516fd9d39782447ba1d..b6f827751fcf7f8b5152f8694806437c7074c5fb 100644 (file)
 static uns mmap_window_size = 16*PAGE_SIZE;
 static uns mmap_extend_size = 4*PAGE_SIZE;
 
-static struct cfitem obuck_config[] = {
+static struct cfitem fbmm_config[] = {
   { "FBMMap",          CT_SECTION,     NULL },
   { "WindowSize",      CT_INT,         &mmap_window_size },
   { "ExtendSize",      CT_INT,         &mmap_extend_size },
   { NULL,              CT_STOP,        NULL }
 };
 
-static void CONSTRUCTOR obuck_init_config(void)
+static void CONSTRUCTOR fbmm_init_config(void)
 {
-  cf_register(obuck_config);
+  cf_register(fbmm_config);
 }
 
 struct fb_mmap {