summaryrefslogtreecommitdiffstats
path: root/include/fs.h
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2014-12-02 17:29:05 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2015-03-09 08:06:41 +0100
commit6977292a34d7d8663997df4fcb4f0c520fbc4b29 (patch)
tree642bd40d879fc208e229e9545062c27e86e29ce8 /include/fs.h
parent09c4b63aa20e97011eb109794c7c23faf7ebdce4 (diff)
downloadbarebox-6977292a34d7d8663997df4fcb4f0c520fbc4b29.tar.gz
barebox-6977292a34d7d8663997df4fcb4f0c520fbc4b29.tar.xz
fs: rename inode member of struct filep to priv
Because that's what it is. 'inode' will become confusing once we support real inodes. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'include/fs.h')
-rw-r--r--include/fs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/fs.h b/include/fs.h
index 63e35ca815..61d7439bfb 100644
--- a/include/fs.h
+++ b/include/fs.h
@@ -30,7 +30,7 @@ typedef struct filep {
loff_t size; /* The size of this inode */
ulong flags; /* the O_* flags from open */
- void *inode; /* private to the filesystem driver */
+ void *priv; /* private to the filesystem driver */
/* private fields. Mapping between FILE and filedescriptor number */
int no;