mirror of
https://github.com/armbian/linux.git
synced 2026-01-06 10:13:00 -08:00
At the moment, 64-bit platforms (other than Alpha) are all redefining things for themselves instead of using <asm-generic/statfs.h>. As is ARM, since it has special requirements w.r.t. padding. Make <asm-generic/statfs.h> more generic, and they can use it directly. Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
11 lines
225 B
C
11 lines
225 B
C
#ifndef _ALPHA_STATFS_H
|
|
#define _ALPHA_STATFS_H
|
|
|
|
/* Alpha is the only 64-bit platform with 32-bit statfs. And doesn't
|
|
even seem to implement statfs64 */
|
|
#define __statfs_word __u32
|
|
|
|
#include <asm-generic/statfs.h>
|
|
|
|
#endif
|