Changeset 1b20da0 in mainline for uspace/drv/nic/ar9271


Ignore:
Timestamp:
2018-02-28T17:52:03Z (8 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

Location:
uspace/drv/nic/ar9271
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/nic/ar9271/ar9271.c

    rdf6ded8 r1b20da0  
    381381                rate_msg.legacy_rates_count = ARRAY_SIZE(ieee80211bg_data_rates);
    382382                memcpy(&rate_msg.legacy_rates,
    383                     ieee80211bg_data_rates, 
     383                    ieee80211bg_data_rates,
    384384                    ARRAY_SIZE(ieee80211bg_data_rates));
    385385               
  • uspace/drv/nic/ar9271/ar9271.h

    rdf6ded8 r1b20da0  
    148148        AR9271_AGC_CONTROL = 0x9860,
    149149        AR9271_PHY_CAL = 0x9864,
    150         AR9271_PHY_SYNTH_CONTROL = 0x9874, 
     150        AR9271_PHY_SYNTH_CONTROL = 0x9874,
    151151        AR9271_PHY_SPECTRAL_SCAN = 0x9910,
    152152        AR9271_PHY_RADAR0 = 0x9954,
     
    156156        AR9271_PHY_MODE = 0xA200,
    157157        AR9271_PHY_CCK_TX_CTRL = 0xA204,
    158         AR9271_PHY_TPCRG1 = 0xA258, 
     158        AR9271_PHY_TPCRG1 = 0xA258,
    159159        AR9271_CARRIER_LEAK_CONTROL = 0xA358,
    160160        AR9271_ADC_CONTROL_OFF_PWDADC = 0x00008000,
    161161        AR9271_AGC_CONTROL_CALIB = 0x00000001,
    162162        AR9271_AGC_CONTROL_NF_CALIB = 0x00000002,
    163         AR9271_AGC_CONTROL_NF_CALIB_EN = 0x00008000, 
     163        AR9271_AGC_CONTROL_NF_CALIB_EN = 0x00008000,
    164164        AR9271_AGC_CONTROL_TX_CALIB = 0x00010000,
    165165        AR9271_AGC_CONTROL_NF_NOT_UPDATE = 0x00020000,
  • uspace/drv/nic/ar9271/ath_usb.c

    rdf6ded8 r1b20da0  
    137137/** Send data message.
    138138 *
    139  * @param ath         Generic Atheros WiFi device structure. 
     139 * @param ath         Generic Atheros WiFi device structure.
    140140 * @param buffer      Buffer with data to send.
    141141 * @param buffer_size Buffer size.
  • uspace/drv/nic/ar9271/htc.c

    rdf6ded8 r1b20da0  
    320320            ((void *) buffer + sizeof(htc_frame_header_t));
    321321       
    322         config_message->message_id = 
     322        config_message->message_id =
    323323            host2uint16_t_be(HTC_MESSAGE_CONFIG);
    324324        /* Magic number to initialize device. */
  • uspace/drv/nic/ar9271/wmi.h

    rdf6ded8 r1b20da0  
    2929/** @file wmi.h
    3030 *
    31  * Definitions of the Atheros WMI protocol specified in the 
     31 * Definitions of the Atheros WMI protocol specified in the
    3232 * Wireless Module Interface (WMI).
    3333 *
Note: See TracChangeset for help on using the changeset viewer.