
This is the first patch in a series of patches that removes devfs support from the kernel. This patch removes the core devfs code, and its private header file. Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
39 lines
792 B
C
39 lines
792 B
C
#ifndef _LINUX_DEVFS_FS_KERNEL_H
|
|
#define _LINUX_DEVFS_FS_KERNEL_H
|
|
|
|
#include <linux/fs.h>
|
|
#include <linux/spinlock.h>
|
|
#include <linux/types.h>
|
|
#include <asm/semaphore.h>
|
|
|
|
static inline int devfs_mk_bdev(dev_t dev, umode_t mode, const char *fmt, ...)
|
|
{
|
|
return 0;
|
|
}
|
|
static inline int devfs_mk_cdev(dev_t dev, umode_t mode, const char *fmt, ...)
|
|
{
|
|
return 0;
|
|
}
|
|
static inline int devfs_mk_symlink(const char *name, const char *link)
|
|
{
|
|
return 0;
|
|
}
|
|
static inline int devfs_mk_dir(const char *fmt, ...)
|
|
{
|
|
return 0;
|
|
}
|
|
static inline void devfs_remove(const char *fmt, ...)
|
|
{
|
|
}
|
|
static inline int devfs_register_tape(const char *name)
|
|
{
|
|
return -1;
|
|
}
|
|
static inline void devfs_unregister_tape(int num)
|
|
{
|
|
}
|
|
static inline void mount_devfs_fs(void)
|
|
{
|
|
return;
|
|
}
|
|
#endif /* _LINUX_DEVFS_FS_KERNEL_H */
|