From 5531abd16dc061cd3272884ada424b33d583f155 Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Sun, 20 Jan 2013 13:10:01 +0100 Subject: [PATCH] move struct action_data to the only file using it Signed-off-by: Sascha Hauer --- common/environment.c | 7 +++++++ include/environment.h | 8 -------- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/common/environment.c b/common/environment.c index e11cd9dd4..9595986be 100644 --- a/common/environment.c +++ b/common/environment.c @@ -41,6 +41,13 @@ #define EXPORT_SYMBOL(x) #endif +struct action_data { + int fd; + const char *base; + void *writep; +}; +#define PAD4(x) ((x + 3) & ~3) + char *default_environment_path = "/dev/env0"; int file_size_action(const char *filename, struct stat *statbuf, diff --git a/include/environment.h b/include/environment.h index 096c1697c..120040e0e 100644 --- a/include/environment.h +++ b/include/environment.h @@ -87,14 +87,6 @@ int file_save_action(const char *, struct stat *, void *, int); int envfs_load(char *filename, char *dirname, unsigned flags); int envfs_save(char *filename, char *dirname); -/* This part is used for the host and the target */ -struct action_data { - int fd; - const char *base; - void *writep; -}; -#define PAD4(x) ((x + 3) & ~3) - #endif /* _ENVIRONMENT_H_ */ /**