Commit f2a53f47 authored by Jeff Oczek's avatar Jeff Oczek Committed by Greg Kroah-Hartman

staging: tidspbridge: Add parameter names to function ptrs in struct dbll_attrs

Add more descriptive names to function pointers in definition of struct dbll_attrs
Signed-off-by: default avatarJeff Oczek <jeffoczek@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 9c079f7c
......@@ -168,11 +168,11 @@ struct dbll_attrs {
* These file manipulation functions should be compatible with the
* "C" run time library functions of the same name.
*/
s32(*fread) (void *, size_t, size_t, void *);
s32(*fseek) (void *, long, int);
s32(*ftell) (void *);
s32(*fclose) (void *);
void *(*fopen) (const char *, const char *);
s32 (*fread)(void *ptr, size_t size, size_t count, void *filp);
s32 (*fseek)(void *filp, long offset, int origin);
s32 (*ftell)(void *filp);
s32 (*fclose)(void *filp);
void *(*fopen)(const char *path, const char *mode);
};
/*
......
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