logo.c (f72222c74bd642182cc892c99df65cb105c61193) | logo.c (90ab5ee94171b3e28de6bb42ee30b527014e0be7) |
---|---|
1 2/* 3 * Linux logo to be displayed on boot 4 * 5 * Copyright (C) 1996 Larry Ewing (lewing@isc.tamu.edu) 6 * Copyright (C) 1996,1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz) 7 * Copyright (C) 2001 Greg Banks <gnb@alphalink.com.au> 8 * Copyright (C) 2001 Jan-Benedict Glaw <jbglaw@lug-owl.de> --- 7 unchanged lines hidden (view full) --- 16#ifdef CONFIG_M68K 17#include <asm/setup.h> 18#endif 19 20#ifdef CONFIG_MIPS 21#include <asm/bootinfo.h> 22#endif 23 | 1 2/* 3 * Linux logo to be displayed on boot 4 * 5 * Copyright (C) 1996 Larry Ewing (lewing@isc.tamu.edu) 6 * Copyright (C) 1996,1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz) 7 * Copyright (C) 2001 Greg Banks <gnb@alphalink.com.au> 8 * Copyright (C) 2001 Jan-Benedict Glaw <jbglaw@lug-owl.de> --- 7 unchanged lines hidden (view full) --- 16#ifdef CONFIG_M68K 17#include <asm/setup.h> 18#endif 19 20#ifdef CONFIG_MIPS 21#include <asm/bootinfo.h> 22#endif 23 |
24static int nologo; | 24static bool nologo; |
25module_param(nologo, bool, 0); 26MODULE_PARM_DESC(nologo, "Disables startup logo"); 27 28/* logo's are marked __initdata. Use __init_refok to tell 29 * modpost that it is intended that this function uses data 30 * marked __initdata. 31 */ 32const struct linux_logo * __init_refok fb_find_logo(int depth) --- 74 unchanged lines hidden --- | 25module_param(nologo, bool, 0); 26MODULE_PARM_DESC(nologo, "Disables startup logo"); 27 28/* logo's are marked __initdata. Use __init_refok to tell 29 * modpost that it is intended that this function uses data 30 * marked __initdata. 31 */ 32const struct linux_logo * __init_refok fb_find_logo(int depth) --- 74 unchanged lines hidden --- |