source: rtems/cpukit/sapi/src/iowrite.c @ 3db9c820

Last change on this file since 3db9c820 was 3db9c820, checked in by Sebastian Huber <sebastian.huber@…>, on 11/28/20 at 10:16:28

sapi: Canonicalize @defgroup and @file comments

Adjust group identifier and names to be in line with a common pattern.
Use common phrases for the group and file brief descriptions.

Update #3706.

  • Property mode set to 100644
File size: 849 bytes
Line 
1/**
2 * @file
3 *
4 * @ingroup RTEMSImplClassicIO
5 *
6 * @brief This source file contains the implementation of rtems_io_write().
7 */
8
9/*
10 *  COPYRIGHT (c) 1989-2007.
11 *  On-Line Applications Research Corporation (OAR).
12 *
13 *  The license and distribution terms for this file may be
14 *  found in the file LICENSE in this distribution or at
15 *  http://www.rtems.org/license/LICENSE.
16 */
17
18#ifdef HAVE_CONFIG_H
19#include "config.h"
20#endif
21
22#include <rtems/ioimpl.h>
23
24rtems_status_code rtems_io_write(
25  rtems_device_major_number  major,
26  rtems_device_minor_number  minor,
27  void                      *argument
28)
29{
30  rtems_device_driver_entry callout;
31
32  if ( major >= _IO_Number_of_drivers )
33    return RTEMS_INVALID_NUMBER;
34
35  callout = _IO_Driver_address_table[major].write_entry;
36  return callout ? callout(major, minor, argument) : RTEMS_SUCCESSFUL;
37}
Note: See TracBrowser for help on using the repository browser.