whitespace cleanup. no code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
b8173b603f
commit
60cb48ca50
59 changed files with 233 additions and 219 deletions
|
@ -219,7 +219,7 @@ static void action_execute(const struct devfsd_notify_struct *, const struct con
|
|||
const regmatch_t *, unsigned);
|
||||
static void action_modload(const struct devfsd_notify_struct *info, const struct config_entry_struct *entry);
|
||||
static void action_copy(const struct devfsd_notify_struct *, const struct config_entry_struct *,
|
||||
const regmatch_t *, unsigned);
|
||||
const regmatch_t *, unsigned);
|
||||
static void action_compat(const struct devfsd_notify_struct *, unsigned);
|
||||
static void free_config(void);
|
||||
static void restore(char *spath, struct stat source_stat, int rootlen);
|
||||
|
@ -229,12 +229,12 @@ static void signal_handler(int);
|
|||
static const char *get_variable(const char *, void *);
|
||||
static int make_dir_tree(const char *);
|
||||
static int expand_expression(char *, unsigned, const char *, const char *(*)(const char *, void *), void *,
|
||||
const char *, const regmatch_t *, unsigned);
|
||||
const char *, const regmatch_t *, unsigned);
|
||||
static void expand_regexp(char *, size_t, const char *, const char *, const regmatch_t *, unsigned);
|
||||
static const char *expand_variable( char *, unsigned, unsigned *, const char *,
|
||||
const char *(*)(const char *, void *), void *);
|
||||
static const char *get_variable_v2(const char *, const char *(*)(const char *, void *), void *);
|
||||
static char get_old_ide_name(unsigned , unsigned);
|
||||
static char get_old_ide_name(unsigned, unsigned);
|
||||
static char *write_old_sd_name(char *, unsigned, unsigned, const char *);
|
||||
|
||||
/* busybox functions */
|
||||
|
@ -580,9 +580,9 @@ static void process_config_line(const char *line, unsigned long *event_mask)
|
|||
/*This action will pass "/dev/$devname"(i.e. "/dev/" prefixed to
|
||||
the device name) to the module loading facility. In addition,
|
||||
the /etc/modules.devfs configuration file is used.*/
|
||||
if (ENABLE_DEVFSD_MODLOAD)
|
||||
if (ENABLE_DEVFSD_MODLOAD)
|
||||
new->action.what = AC_MODLOAD;
|
||||
break;
|
||||
break;
|
||||
case 6: /* EXECUTE */
|
||||
new->action.what = AC_EXECUTE;
|
||||
num_args -= 3;
|
||||
|
@ -750,7 +750,7 @@ static void action_permissions(const struct devfsd_notify_struct *info,
|
|||
} /* End Function action_permissions */
|
||||
|
||||
static void action_modload(const struct devfsd_notify_struct *info,
|
||||
const struct config_entry_struct *entry UNUSED_PARAM)
|
||||
const struct config_entry_struct *entry UNUSED_PARAM)
|
||||
/* [SUMMARY] Load a module.
|
||||
<info> The devfs change.
|
||||
<entry> The config file entry.
|
||||
|
@ -771,8 +771,8 @@ static void action_modload(const struct devfsd_notify_struct *info,
|
|||
} /* End Function action_modload */
|
||||
|
||||
static void action_execute(const struct devfsd_notify_struct *info,
|
||||
const struct config_entry_struct *entry,
|
||||
const regmatch_t *regexpr, unsigned int numexpr)
|
||||
const struct config_entry_struct *entry,
|
||||
const regmatch_t *regexpr, unsigned int numexpr)
|
||||
/* [SUMMARY] Execute a programme.
|
||||
<info> The devfs change.
|
||||
<entry> The config file entry.
|
||||
|
@ -1641,10 +1641,10 @@ st_expr_expand_out:
|
|||
/* Private functions follow */
|
||||
|
||||
static const char *expand_variable(char *buffer, unsigned int length,
|
||||
unsigned int *out_pos, const char *input,
|
||||
const char *(*func)(const char *variable,
|
||||
unsigned int *out_pos, const char *input,
|
||||
const char *(*func)(const char *variable,
|
||||
void *info),
|
||||
void *info)
|
||||
void *info)
|
||||
/* [SUMMARY] Expand a variable.
|
||||
<buffer> The buffer to write to.
|
||||
<length> The length of the output buffer.
|
||||
|
@ -1786,8 +1786,8 @@ expand_variable_out:
|
|||
|
||||
|
||||
static const char *get_variable_v2(const char *variable,
|
||||
const char *(*func)(const char *variable, void *info),
|
||||
void *info)
|
||||
const char *(*func)(const char *variable, void *info),
|
||||
void *info)
|
||||
/* [SUMMARY] Get a variable from the environment or .
|
||||
<variable> The variable name.
|
||||
<func> A function which will be used to get the variable. If this returns
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue