28 lines
1.1 KiB
C
28 lines
1.1 KiB
C
|
/*
|
||
|
*********************************************************************************************************
|
||
|
* LINUX-KERNEL
|
||
|
* AllWinner Linux Platform Develop Kits
|
||
|
* Kernel Module
|
||
|
*
|
||
|
* (c) Copyright 2012-2015, China
|
||
|
* All Rights Reserved
|
||
|
*
|
||
|
* File : mem_printk.h
|
||
|
* By : young
|
||
|
* Version : v1.0
|
||
|
* Date : 2011-5-30 19:50
|
||
|
* Descript: intterupt bsp for platform standby.
|
||
|
* Update : date auther ver notes
|
||
|
*********************************************************************************************************
|
||
|
*/
|
||
|
#ifndef __MEM_PRINTK_H__
|
||
|
#define __MEM_PRINTK_H__
|
||
|
|
||
|
#define DEBUG_BUFFER_SIZE (256)
|
||
|
//other module may define printk, while its declaration may not be the same with this.
|
||
|
//so, it not proper to export this symbols to global.
|
||
|
__s32 printk(const char *format, ...);
|
||
|
__s32 printk_nommu(const char *format, ...);
|
||
|
|
||
|
#endif //__MEM_PRINTK_H__
|