xen/tmem: cleanup

Use 'bool' for boolean variables. Do proper section placement.
Eliminate an unnecessary export.

Signed-off-by: Jan Beulich <jbeulich@suse.com>
Acked-by: Dan Magenheimer <dan.magenheimer@oracle.com>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
This commit is contained in:
Jan Beulich
2012-02-03 15:09:04 +00:00
committed by Konrad Rzeszutek Wilk
parent 9846ff10af
commit 8e6f7c23c1
2 changed files with 13 additions and 14 deletions

View File

@@ -1,5 +1,9 @@
#ifndef _XEN_TMEM_H
#define _XEN_TMEM_H
#include <linux/types.h>
/* defined in drivers/xen/tmem.c */
extern int tmem_enabled;
extern bool tmem_enabled;
#endif /* _XEN_TMEM_H */