source: rtems/cpukit/libfs/src/devfs/devwrite.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: 609 bytes
RevLine 
[9bff3752]1/**
2 * @file
3 *
4 * @brief Writes Operation to rtems_io_write
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
14#if HAVE_CONFIG_H
[fed66f99]15  #include "config.h"
[d40da79b]16#endif
17
18#include "devfs.h"
19
[fed66f99]20#include <rtems/deviceio.h>
21
[d40da79b]22ssize_t devFS_write(
23  rtems_libio_t *iop,
24  const void    *buffer,
25  size_t         count
26)
27{
[3b7c123]28  const devFS_node *np = iop->pathinfo.node_access;
[d40da79b]29
[fed66f99]30  return rtems_deviceio_write( iop, buffer, count, np->major, np->minor );
[d40da79b]31}
Note: See TracBrowser for help on using the repository browser.