www.pudn.com > efs.rar > fs_nodev.h
/***********************************************************************
* fs_nodev.h
*
* No device filesystem.
* Copyright (C) 2006 QUALCOMM, Inc.
*
* A simple filesystem that always returns nodev.
*
***********************************************************************/
/*===========================================================================
EDIT HISTORY FOR MODULE
This section contains comments describing changes made to the module.
Notice that changes are listed in reverse chronological order.
$Header: //depot/asic/MSMSHARED/services/efs/MSM_EFS.01.02/fs_nodev.h#1 $ $DateTime: 2006/05/12 10:57:11 $ $Author: davidb $
when who what, where, why
---------- --- ---------------------------------------------------------
2006-05-08 dlb Create
===========================================================================*/
#ifndef __FS_NODEV_H__
#define __FS_NODEV_H__
#include "fs_mount.h"
struct fs_mount_nodevfs {
struct fs_mount parent;
struct fs_vnode *root;
};
void fs_nodevfs_init (void);
#endif /* not __FS_NODEV_H__ */