early_printk.h

来自「linux 内核源代码」· C头文件 代码 · 共 29 行

H
29
字号
/* * File:         include/asm-blackfin/early_printk.h * Author:       Robin Getz <rgetz@blackfin.uclinux.org * * Created:      14Aug2007 * Description:  function prototpyes for early printk * * Modified: *               Copyright 2004-2007 Analog Devices Inc. * * Bugs:         Enter bugs at http://blackfin.uclinux.org/ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. */#ifdef CONFIG_EARLY_PRINTKextern int setup_early_printk(char *);#else#define setup_early_printk(fmt) do { } while (0)#endif /* CONFIG_EARLY_PRINTK */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?