blob: 9a6a5f2fcf9a99956dfeffab5fa4de23ff261365 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef __AAL_CONTROL_H__
#define __AAL_CONTROL_H__
#define AAL_TAG "[ALS/AAL]"
#define AAL_LOG(fmt, args...) printk(KERN_ERR AAL_TAG fmt, ##args)
#define AAL_FUN(f) printk(KERN_INFO AAL_TAG"%s\n", __func__)
#define AAL_ERR(fmt, args...) printk(KERN_ERR AAL_TAG"%s %d : "fmt, __func__, __LINE__, ##args)
#endif
extern int aal_use;
|