#include #include #include #include #include #include #include #include #include void change_floppy(char *fmt, ...); void mount_block_root(char *name, int flags); void mount_root(void); extern int root_mountflags; static inline int create_dev(char *name, dev_t dev) { sys_unlink(name); return sys_mknod(name, S_IFBLK|0600, new_encode_dev(dev)); } #if BITS_PER_LONG == 32 static inline u32 bstat(char *name) { struct stat64 stat; if (sys_stat64(name, &stat) != 0) return 0; if (!S_ISBLK(stat.st_mode)) return 0; if (stat.st_rdev != (u32)stat.st_rdev) return 0; return stat.st_rdev; } #else static inline u32 bstat(char *name) { struct stat stat; if (sys_newstat(name, &stat) != 0) return 0; if (!S_ISBLK(stat.st_mode)) return 0; return stat.st_rdev; } #endif #ifdef CONFIG_BLK_DEV_RAM int __init rd_load_disk(int n); int __init rd_load_image(char *from); #else static inline int rd_load_disk(int n) { return 0; } static inline int rd_load_image(char *from) { return 0; } #endif #ifdef CONFIG_BLK_DEV_INITRD bool __init initrd_load(void); #else static inline bool initrd_load(void) { return false; } #endif #ifdef CONFIG_BLK_DEV_MD void md_run_setup(void); #else static inline void md_run_setup(void) {} #endif plumbingsTobias Klauser
summaryrefslogtreecommitdiff
option value='1'>ignore
AgeCommit message (Expand)AuthorFilesLines
mode:
authorJohannes Berg <johannes.berg@intel.com>2017-01-13 11:12:01 +0100
committerJohannes Berg <johannes.berg@intel.com>2017-01-24 11:07:35 +0100
commit57eeb2086d6477968990e1790a9d8d0ec7ee8a4d (patch)
tree3ee57fb947652ffff229a34607ca6626494d61a3
parentc6c94aea821640ac422c435f9d4c895af76ed6f6 (diff)
mac80211: fix documentation warnings
For a few restructured text warnings in mac80211, making the documentation warning-free (for now). In order to not add trailing whitespace, but also not introduce too much noise into this change, move just the affected docs into inline comments. Signed-off-by: Johannes Berg <johannes.berg@intel.com>