Module: Remove some unused members of a structure

This commit is contained in:
Gregory Nutt 2015-12-13 06:48:30 -06:00
parent 917dbc8540
commit 076f382f79
2 changed files with 2 additions and 7 deletions

@ -1 +1 @@
Subproject commit 4a56b7ba643607bbfadaef3628a7322b642ffa3f
Subproject commit 2d03a7241ae1347d12f69005c3fc3d98c52fffbf

View File

@ -87,12 +87,7 @@ struct modprocfs_file_s
size_t remaining; /* Space remaining in user buffer */
size_t totalsize; /* Total size returned by read() */
off_t offset; /* Offset skip on output */
/* Line buffer */
uint8_t lineno; /* Line number */
uint8_t linesize; /* Number of valid characters in line[] */
char line[MOD_LINELEN]; /* Pre-allocated buffer for formatted lines */
char line[MOD_LINELEN]; /* Buffer for line formatting */
};
/****************************************************************************