devfs_fs_kernel.h 365 B

12345678910111213141516
  1. #ifndef _LINUX_DEVFS_FS_KERNEL_H
  2. #define _LINUX_DEVFS_FS_KERNEL_H
  3. #include <linux/fs.h>
  4. #include <linux/spinlock.h>
  5. #include <linux/types.h>
  6. #include <asm/semaphore.h>
  7. static inline int devfs_mk_cdev(dev_t dev, umode_t mode, const char *fmt, ...)
  8. {
  9. return 0;
  10. }
  11. static inline void devfs_remove(const char *fmt, ...)
  12. {
  13. }
  14. #endif /* _LINUX_DEVFS_FS_KERNEL_H */