Commit 3db0c74a authored by Paolo \'Blaisorblade\' Giarrusso's avatar Paolo \'Blaisorblade\' Giarrusso Committed by Linus Torvalds

[PATCH] uml: Kill useless warnings

Fixes some little warnings about "Defined but not used ..." by #ifdef'ing
things
Signed-off-by: default avatarPaolo 'Blaisorblade' Giarrusso <blaisorblade_spam@yahoo.it>
Cc: Jeff Dike <jdike@addtoit.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 90d1735b
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
#include <sys/time.h> #include <sys/time.h>
#include <signal.h> #include <signal.h>
#include <errno.h> #include <errno.h>
#include <string.h>
#include "user_util.h" #include "user_util.h"
#include "kern_util.h" #include "kern_util.h"
#include "user.h" #include "user.h"
......
...@@ -43,7 +43,9 @@ int timer_irq_inited = 0; ...@@ -43,7 +43,9 @@ int timer_irq_inited = 0;
static int first_tick; static int first_tick;
static unsigned long long prev_tsc; static unsigned long long prev_tsc;
#ifdef CONFIG_UML_REAL_TIME_CLOCK
static long long delta; /* Deviation per interval */ static long long delta; /* Deviation per interval */
#endif
extern unsigned long long host_hz; extern unsigned long long host_hz;
...@@ -59,7 +61,7 @@ void timer_irq(union uml_pt_regs *regs) ...@@ -59,7 +61,7 @@ void timer_irq(union uml_pt_regs *regs)
} }
if(first_tick){ if(first_tick){
#if defined(CONFIG_UML_REAL_TIME_CLOCK) #ifdef CONFIG_UML_REAL_TIME_CLOCK
unsigned long long tsc; unsigned long long tsc;
/* We've had 1 tick */ /* We've had 1 tick */
tsc = time_stamp(); tsc = time_stamp();
......
...@@ -59,6 +59,7 @@ static struct inode_operations hostfs_iops; ...@@ -59,6 +59,7 @@ static struct inode_operations hostfs_iops;
static struct inode_operations hostfs_dir_iops; static struct inode_operations hostfs_dir_iops;
static struct address_space_operations hostfs_link_aops; static struct address_space_operations hostfs_link_aops;
#ifndef MODULE
static int __init hostfs_args(char *options, int *add) static int __init hostfs_args(char *options, int *add)
{ {
char *ptr; char *ptr;
...@@ -95,6 +96,7 @@ __uml_setup("hostfs=", hostfs_args, ...@@ -95,6 +96,7 @@ __uml_setup("hostfs=", hostfs_args,
" The only flag currently supported is 'append', which specifies that all\n" " The only flag currently supported is 'append', which specifies that all\n"
" files opened by hostfs will be opened in append mode.\n\n" " files opened by hostfs will be opened in append mode.\n\n"
); );
#endif
static char *dentry_name(struct dentry *dentry, int extra) static char *dentry_name(struct dentry *dentry, int extra)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment