Fixing coding style issues
- Fixing leading white spaces - Fixing indentation where 4 spaces are used instead of tab - Removing C++ comments (//), wherever I introduced them Signed-off-by: William Juul <william.juul@tandberg.com> Signed-off-by: Scott Wood <scottwood@freescale.com>
This commit is contained in:
@@ -18,10 +18,10 @@
|
||||
#define KERN_DEBUG
|
||||
|
||||
#define kmalloc(size, flags) malloc(size)
|
||||
#define kzalloc(size, flags) calloc(size, 1)
|
||||
#define kzalloc(size, flags) calloc(size, 1)
|
||||
#define vmalloc(size) malloc(size)
|
||||
#define kfree(ptr) free(ptr)
|
||||
#define vfree(ptr) free(ptr)
|
||||
#define kfree(ptr) free(ptr)
|
||||
#define vfree(ptr) free(ptr)
|
||||
|
||||
#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user