source: rtems/cpukit/libfs/src/devfs/devopen.c @ 53da07e

4.115
Last change on this file since 53da07e was fed66f99, checked in by Sebastian Huber <sebastian.huber@…>, on 05/14/12 at 13:19:20

Filesystem: Add shared device IO support

The device IO file system support in IMFS, devFS, and RFS uses now a
shared implementation.

  • Property mode set to 100644
File size: 542 bytes
Line 
1/*
2 *  The license and distribution terms for this file may be
3 *  found in the file LICENSE in this distribution or at
4 *  http://www.rtems.com/license/LICENSE.
5 */
6
7#if HAVE_CONFIG_H
8  #include "config.h"
9#endif
10
11#include "devfs.h"
12
13#include <rtems/deviceio.h>
14
15int devFS_open(
16  rtems_libio_t *iop,
17  const char    *pathname,
18  int            oflag,
19  mode_t         mode
20)
21{
22  const devFS_node *np = iop->pathinfo.node_access;
23
24  return rtems_deviceio_open(
25    iop,
26    pathname,
27    oflag,
28    mode,
29    np->major,
30    np->minor
31  );
32}
Note: See TracBrowser for help on using the repository browser.