Changeset 274 for freebsd-mos-driver


Ignore:
Timestamp:
Feb 13, 2011, 3:00:08 PM (14 years ago)
Author:
Rick van der Zwet
Message:

Running trough indent(1), white-space fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • freebsd-mos-driver/if_mosreg.h

    r273 r274  
    9999#define MOS_CTL_SLEEP           0x04
    100100#define MOS_CTL_TX_ENB          0x08
    101 /* 
    102  * The documentation calls this bit 'reserved', but in the FreeBSD driver 
     101/*
     102 * The documentation calls this bit 'reserved', but in the FreeBSD driver
    103103 * provided by the vendor, this enables the receiver.
    104104 */
     
    150150#define MOS_IFACE_IDX           0
    151151
    152 #define MCS7730 0x0001          /* MCS7730 */
    153 #define MCS7830 0x0002          /* MCS7830 */
     152#define MCS7730 0x0001                  /* MCS7730 */
     153#define MCS7830 0x0002                  /* MCS7830 */
    154154
    155155#define MOS_INC(x, y)           (x) = (x + 1) % y
    156156
    157157struct mos_softc {
    158         struct usb_ether        sc_ue;
    159         struct ifnet            ifp;
     158        struct usb_ether sc_ue;
     159        struct ifnet ifp;
    160160
    161         u_int16_t               mos_flags;
     161        u_int16_t mos_flags;
    162162
    163         int                     mos_link;
    164         unsigned char           mos_ipgs[2];
    165         unsigned char           mos_phyaddrs[2];
     163        int     mos_link;
     164        unsigned char mos_ipgs[2];
     165        unsigned char mos_phyaddrs[2];
    166166
    167         struct mtx              sc_mtx;
    168         struct usb_xfer *sc_xfer[MOS_ENDPT_MAX];
     167        struct mtx sc_mtx;
     168        struct usb_xfer *sc_xfer[MOS_ENDPT_MAX];
    169169};
    170170
     
    173173#define MOS_UNLOCK(_sc)         mtx_unlock(&(_sc)->sc_mtx)
    174174#define MOS_LOCK_ASSERT(_sc, t) mtx_assert(&(_sc)->sc_mtx, t)
    175 
Note: See TracChangeset for help on using the changeset viewer.