Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 324989
b: refs/heads/master
c: 8b22b0b
h: refs/heads/master
i:
  324987: 77c5df7
v: v3
  • Loading branch information
DanielC authored and Greg Kroah-Hartman committed Sep 8, 2012
1 parent b6c48c2 commit a86f67f
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 33 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7040e556c90aefd7b0e1341f7490de20a33340d7
refs/heads/master: 8b22b0b26fadb60417e18bc4d31b8b0f0b59a92d
64 changes: 32 additions & 32 deletions trunk/drivers/staging/silicom/bp_ioctl.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,44 +13,44 @@
#ifndef BP_IOCTL_H
#define BP_IOCTL_H

#define BP_CAP 0x01 //BIT_0
#define BP_STATUS_CAP 0x02 //BIT_1
#define BP_STATUS_CHANGE_CAP 0x04 //BIT_2
#define SW_CTL_CAP 0x08 //BIT_3
#define BP_DIS_CAP 0x10 //BIT_4
#define BP_DIS_STATUS_CAP 0x20 //BIT_5
#define STD_NIC_CAP 0x40 //BIT_6
#define BP_PWOFF_ON_CAP 0x80 //BIT_7
#define BP_PWOFF_OFF_CAP 0x0100 //BIT_8
#define BP_PWOFF_CTL_CAP 0x0200 //BIT_9
#define BP_PWUP_ON_CAP 0x0400 //BIT_10
#define BP_PWUP_OFF_CAP 0x0800 //BIT_11
#define BP_PWUP_CTL_CAP 0x1000 //BIT_12
#define WD_CTL_CAP 0x2000 //BIT_13
#define WD_STATUS_CAP 0x4000 //BIT_14
#define WD_TIMEOUT_CAP 0x8000 //BIT_15
#define TX_CTL_CAP 0x10000 //BIT_16
#define TX_STATUS_CAP 0x20000 //BIT_17
#define TAP_CAP 0x40000 //BIT_18
#define TAP_STATUS_CAP 0x80000 //BIT_19
#define TAP_STATUS_CHANGE_CAP 0x100000 //BIT_20
#define TAP_DIS_CAP 0x200000 //BIT_21
#define TAP_DIS_STATUS_CAP 0x400000 //BIT_22
#define TAP_PWUP_ON_CAP 0x800000 //BIT_23
#define TAP_PWUP_OFF_CAP 0x1000000 //BIT 24
#define TAP_PWUP_CTL_CAP 0x2000000 //BIT 25
#define NIC_CAP_NEG 0x4000000 //BIT 26
#define TPL_CAP 0x8000000 //BIT 27
#define DISC_CAP 0x10000000 //BIT 28
#define DISC_DIS_CAP 0x20000000 //BIT 29
#define DISC_PWUP_CTL_CAP 0x40000000 //BIT 30
#define BP_CAP 0x01 /* BIT_0 */
#define BP_STATUS_CAP 0x02
#define BP_STATUS_CHANGE_CAP 0x04
#define SW_CTL_CAP 0x08
#define BP_DIS_CAP 0x10
#define BP_DIS_STATUS_CAP 0x20
#define STD_NIC_CAP 0x40
#define BP_PWOFF_ON_CAP 0x80
#define BP_PWOFF_OFF_CAP 0x0100
#define BP_PWOFF_CTL_CAP 0x0200
#define BP_PWUP_ON_CAP 0x0400
#define BP_PWUP_OFF_CAP 0x0800
#define BP_PWUP_CTL_CAP 0x1000
#define WD_CTL_CAP 0x2000
#define WD_STATUS_CAP 0x4000
#define WD_TIMEOUT_CAP 0x8000
#define TX_CTL_CAP 0x10000
#define TX_STATUS_CAP 0x20000
#define TAP_CAP 0x40000
#define TAP_STATUS_CAP 0x80000
#define TAP_STATUS_CHANGE_CAP 0x100000
#define TAP_DIS_CAP 0x200000
#define TAP_DIS_STATUS_CAP 0x400000
#define TAP_PWUP_ON_CAP 0x800000
#define TAP_PWUP_OFF_CAP 0x1000000
#define TAP_PWUP_CTL_CAP 0x2000000
#define NIC_CAP_NEG 0x4000000
#define TPL_CAP 0x8000000
#define DISC_CAP 0x10000000
#define DISC_DIS_CAP 0x20000000
#define DISC_PWUP_CTL_CAP 0x40000000

#define TPL2_CAP_EX 0x01
#define DISC_PORT_CAP_EX 0x02

#define WD_MIN_TIME_MASK(val) (val & 0xf)
#define WD_STEP_COUNT_MASK(val) ((val & 0xf) << 5)
#define WDT_STEP_TIME 0x10 //BIT_4
#define WDT_STEP_TIME 0x10 /* BIT_4 */

#define WD_MIN_TIME_GET(desc) (desc & 0xf)
#define WD_STEP_COUNT_GET(desc) (desc>>5) & 0xf
Expand Down

0 comments on commit a86f67f

Please sign in to comment.