From: Christian H. <ch...@ku...> - 2000-06-21 13:07:13
|
Hi, After I analysed the init of the frame buffer subsystem (and tried to understand __setup_# and check_setup() stuff ;-), I'm not sure I got the sense of the following: _____fbmem.c_____L653__________________________________ /* * Probe for all builtin frame buffer devices */ for (i = 0; i < num_pref_init_funcs; i++) pref_init_funcs[i](); for (i = 0; i < NUM_FB_DRIVERS; i++) if (fb_drivers[i].init) fb_drivers[i].init(); _______________________________________________________ 1. pref_init_funcs[]() inits all fbdevs from the boot param line, right? 2. fb_drivers[]() inits the rest, right? -> so we init ALL fbdevs. Some with boot params and some without?! Thank you, Christian. |