source: rtems/cpukit/libfs/src/devfs/devclose.c @ 339069fc

5
Last change on this file since 339069fc was 339069fc, checked in by Sebastian Huber <sebastian.huber@…>, on 12/13/17 at 07:02:09

devfs: Include <rtems/devfs.h>

Prepare for header file move to common include directory.

Update #3254.

  • Property mode set to 100644
File size: 551 bytes
Line 
1/**
2 * @file
3 *
4 * @brief Maps Close Operation to rtems_io_close
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 <rtems/devfs.h>
19
20#include <rtems/deviceio.h>
21
22int devFS_close(
23  rtems_libio_t *iop
24)
25{
26  const devFS_node *np = iop->pathinfo.node_access;
27
28  return rtems_deviceio_close( iop, np->major, np->minor );
29}
Note: See TracBrowser for help on using the repository browser.