Ignore:
Timestamp:
2011-01-09T17:02:19Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
36a6e11
Parents:
f724e82
Message:

Remove char.h to char_dev.h (the _dev is part of the interface name in case of char_dev, unlike hw_res).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/drv/generic/remote_char.c

    rf724e82 rce79069b  
    4646
    4747/** Remote character interface operations. */
    48 static remote_iface_func_ptr_t remote_char_iface_ops [] = {
     48static remote_iface_func_ptr_t remote_char_iface_ops[] = {
    4949        &remote_char_read,
    5050        &remote_char_write
     
    7474remote_char_read(device_t *dev, void *iface, ipc_callid_t callid,
    7575    ipc_call_t *call)
    76 {       
     76{
    7777        char_iface_t *char_iface = (char_iface_t *) iface;
    7878        ipc_callid_t cid;
     
    136136                ipc_answer_0(callid, ENOTSUP);
    137137                return;
    138         }       
     138        }
    139139       
    140140        if (len > MAX_CHAR_RW_COUNT)
Note: See TracChangeset for help on using the changeset viewer.