Skip to content

Commit

Permalink
ipg: remove boolean macros
Browse files Browse the repository at this point in the history
Signed-off-by: Pekka Enberg <penberg@cs.helsinki.fi>
Cc: Francois Romieu <romieu@fr.zoreil.com>
Cc: Sorbica Shieh <sorbica@icplus.com.tw>
Cc: Jesse Huang <jesse@icplus.com.tw>
  • Loading branch information
Pekka Enberg authored and David S. Miller committed Jan 28, 2008
1 parent 9305a77 commit 4602e66
Showing 1 changed file with 7 additions and 11 deletions.
18 changes: 7 additions & 11 deletions drivers/net/ipg.h
Original file line number Diff line number Diff line change
Expand Up @@ -478,38 +478,34 @@ enum ipg_regs {
* Tune
*/

/* Miscellaneous Constants. */
#define TRUE 1
#define FALSE 0

/* Assign IPG_APPEND_FCS_ON_TX > 0 for auto FCS append on TX. */
#define IPG_APPEND_FCS_ON_TX TRUE
#define IPG_APPEND_FCS_ON_TX 1

/* Assign IPG_APPEND_FCS_ON_TX > 0 for auto FCS strip on RX. */
#define IPG_STRIP_FCS_ON_RX TRUE
#define IPG_STRIP_FCS_ON_RX 1

/* Assign IPG_DROP_ON_RX_ETH_ERRORS > 0 to drop RX frames with
* Ethernet errors.
*/
#define IPG_DROP_ON_RX_ETH_ERRORS TRUE
#define IPG_DROP_ON_RX_ETH_ERRORS 1

/* Assign IPG_INSERT_MANUAL_VLAN_TAG > 0 to insert VLAN tags manually
* (via TFC).
*/
#define IPG_INSERT_MANUAL_VLAN_TAG FALSE
#define IPG_INSERT_MANUAL_VLAN_TAG 0

/* Assign IPG_ADD_IPCHECKSUM_ON_TX > 0 for auto IP checksum on TX. */
#define IPG_ADD_IPCHECKSUM_ON_TX FALSE
#define IPG_ADD_IPCHECKSUM_ON_TX 0

/* Assign IPG_ADD_TCPCHECKSUM_ON_TX > 0 for auto TCP checksum on TX.
* DO NOT USE FOR SILICON REVISIONS B3 AND EARLIER.
*/
#define IPG_ADD_TCPCHECKSUM_ON_TX FALSE
#define IPG_ADD_TCPCHECKSUM_ON_TX 0

/* Assign IPG_ADD_UDPCHECKSUM_ON_TX > 0 for auto UDP checksum on TX.
* DO NOT USE FOR SILICON REVISIONS B3 AND EARLIER.
*/
#define IPG_ADD_UDPCHECKSUM_ON_TX FALSE
#define IPG_ADD_UDPCHECKSUM_ON_TX 0

/* If inserting VLAN tags manually, assign the IPG_MANUAL_VLAN_xx
* constants as desired.
Expand Down

0 comments on commit 4602e66

Please sign in to comment.