X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=lib%2Ffb-mmap.c;h=d7eaa3d0f6b3e33d1470efed659926281484fe2e;hb=62eda8640605c19ecd817e274e75717022349732;hp=08a96729044cec03cc2cd97686a19ffeb0e831eb;hpb=59e023bb0dc1868bb2b58d1a648e2c9d9dbb4c0e;p=libucw.git diff --git a/lib/fb-mmap.c b/lib/fb-mmap.c index 08a96729..d7eaa3d0 100644 --- a/lib/fb-mmap.c +++ b/lib/fb-mmap.c @@ -21,16 +21,17 @@ static uns mmap_window_size = 16*PAGE_SIZE; static uns mmap_extend_size = 4*PAGE_SIZE; -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 struct cf_section fbmm_config = { + CF_ITEMS { + CF_UNS("WindowSize", &mmap_window_size), + CF_UNS("ExtendSize", &mmap_extend_size), + CF_END + } }; static void CONSTRUCTOR fbmm_init_config(void) { - cf_register(fbmm_config); + cf_declare_section("FBMMap", &fbmm_config, 0); } struct fb_mmap {