Changeset 1b20da0 in mainline for uspace/lib/nic/src/nic_driver.c


Ignore:
Timestamp:
2018-02-28T17:52:03Z (7 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3061bc1
Parents:
df6ded8
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:26:03)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:52:03)
Message:

style: Remove trailing whitespace on non-empty lines, in certain file types.

Command used: tools/srepl '\([^[:space:]]\)\s\+$' '\1' -- *.c *.h *.py *.sh *.s *.S *.ag

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/nic/src/nic_driver.c

    rdf6ded8 r1b20da0  
    375375}
    376376
    377 /** Get the polling mode information from the device 
     377/** Get the polling mode information from the device
    378378 *
    379379 *      The main lock should be locked, otherwise the inconsistency between
     
    898898}
    899899
    900 /** 
     900/**
    901901 * @param dev DDF device associated with NIC
    902902 * @return The associated NIC structure
     
    907907}
    908908
    909 /** 
     909/**
    910910 * @param dev DDF function associated with NIC
    911911 * @return The associated NIC structure
     
    938938 * @param cause         The concrete error cause.
    939939 */
    940 void nic_report_send_error(nic_t *nic_data, nic_send_error_cause_t cause, 
     940void nic_report_send_error(nic_t *nic_data, nic_send_error_cause_t cause,
    941941    unsigned count)
    942942{
     
    10211021}
    10221022
    1023 /** Just wrapper for checking nonzero time interval 
     1023/** Just wrapper for checking nonzero time interval
    10241024 *
    10251025 *  @oaram t The interval to check
     
    11051105        /* Create the fibril if it is not crated */
    11061106        if (nic_data->sw_poll_info.fibril == 0) {
    1107                 nic_data->sw_poll_info.fibril = fibril_create(period_fibril_fun, 
     1107                nic_data->sw_poll_info.fibril = fibril_create(period_fibril_fun,
    11081108                    nic_data);
    11091109                nic_data->sw_poll_info.running = 0;
Note: See TracChangeset for help on using the changeset viewer.