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

4.115
Last change on this file since df40cc9 was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

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