Ignore:
Timestamp:
2015-04-23T23:40:14Z (9 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
dcba819
Parents:
09044cb
Message:

pre-merge coding style cleanup and code review

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/drv/include/ops/ieee80211.h

    r09044cb r8a64320e  
    4242/** IEEE 802.11 interface functions definition. */
    4343typedef struct ieee80211_iface {
    44         /**
    45          * Fetch scan results from IEEE 802.11 device.
    46          *
    47          * @param fun IEEE 802.11 function.
     44        /** Fetch scan results from IEEE 802.11 device.
     45         *
     46         * @param fun     IEEE 802.11 function.
    4847         * @param results Structure where to put scan results.
    49          * @param now Whether to initiate scan immediately.
    50          * 
     48         * @param now     Whether to initiate scan immediately.
     49         *
    5150         * @return EOK if succeed, negative error code otherwise.
     51         *
    5252         */
    5353        int (*get_scan_results)(ddf_fun_t *, ieee80211_scan_results_t *, bool);
    5454       
    55         /**
    56          * Connect IEEE 802.11 device to specified network.
     55        /** Connect IEEE 802.11 device to specified network.
    5756         *
    58          * @param fun IEEE 802.11 function.
    59          * @param ssid Network SSID.
     57         * @param fun      IEEE 802.11 function.
     58         * @param ssid     Network SSID.
    6059         * @param password Network password (empty string if not needed).
    61          * 
     60         *
    6261         * @return EOK if succeed, negative error code otherwise.
     62         *
    6363         */
    6464        int (*connect)(ddf_fun_t *, char *, char *);
    6565       
    66         /**
    67          * Disconnect IEEE 802.11 device from network.
     66        /** Disconnect IEEE 802.11 device from network.
    6867         *
    6968         * @param fun IEEE 802.11 function.
    70          * 
     69         *
    7170         * @return EOK if succeed, negative error code otherwise.
     71         *
    7272         */
    7373        int (*disconnect)(ddf_fun_t *);
Note: See TracChangeset for help on using the changeset viewer.