source: rtems/cpukit/libfs/src/devfs/devioctl.c @ c499856

4.115
Last change on this file since c499856 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: 621 bytes
RevLine 
[9bff3752]1/**
2 * @file
3 *
4 * @brief Maps ioctl Operation to rtems_io_ioctl
5 * @ingroup DevFsDeviceTable Define Device Table Type
6 */
7
[d40da79b]8/*
9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
[c499856]11 *  http://www.rtems.org/license/LICENSE.
[d40da79b]12 */
13
[fed66f99]14#if HAVE_CONFIG_H
15  #include "config.h"
[d40da79b]16#endif
17
18#include "devfs.h"
19
[fed66f99]20#include <rtems/deviceio.h>
21
[d40da79b]22int devFS_ioctl(
[df01da67]23  rtems_libio_t   *iop,
24  ioctl_command_t  command,
25  void            *buffer
[d40da79b]26)
27{
[3b7c123]28  const devFS_node *np = iop->pathinfo.node_access;
[d40da79b]29
[fed66f99]30  return rtems_deviceio_control( iop, command, buffer, np->major, np->minor );
[d40da79b]31}
Note: See TracBrowser for help on using the repository browser.