diff options
| author | David S. Miller <davem@davemloft.net> | 2013-03-20 12:46:26 -0400 | 
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2013-03-20 12:46:26 -0400 | 
| commit | 61816596d1c9026d0ecb20c44f90452c41596ffe (patch) | |
| tree | 3027ed6dc62f71e14b9d525405747fa0eb8f074d /arch/s390/include/asm/eadm.h | |
| parent | 23a9072e3af0d9538e25837fb2b56bb94e4a8e67 (diff) | |
| parent | da2191e31409d1058dcbed44e8f53e39a40e86b3 (diff) | |
| download | olio-linux-3.10-61816596d1c9026d0ecb20c44f90452c41596ffe.tar.xz olio-linux-3.10-61816596d1c9026d0ecb20c44f90452c41596ffe.zip  | |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
Pull in the 'net' tree to get Daniel Borkmann's flow dissector
infrastructure change.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/s390/include/asm/eadm.h')
| -rw-r--r-- | arch/s390/include/asm/eadm.h | 6 | 
1 files changed, 5 insertions, 1 deletions
diff --git a/arch/s390/include/asm/eadm.h b/arch/s390/include/asm/eadm.h index 8d4847191ec..dc9200ca32e 100644 --- a/arch/s390/include/asm/eadm.h +++ b/arch/s390/include/asm/eadm.h @@ -34,6 +34,8 @@ struct arsb {  	u32 reserved[4];  } __packed; +#define EQC_WR_PROHIBIT 22 +  struct msb {  	u8 fmt:4;  	u8 oc:4; @@ -96,11 +98,13 @@ struct scm_device {  #define OP_STATE_TEMP_ERR	2  #define OP_STATE_PERM_ERR	3 +enum scm_event {SCM_CHANGE, SCM_AVAIL}; +  struct scm_driver {  	struct device_driver drv;  	int (*probe) (struct scm_device *scmdev);  	int (*remove) (struct scm_device *scmdev); -	void (*notify) (struct scm_device *scmdev); +	void (*notify) (struct scm_device *scmdev, enum scm_event event);  	void (*handler) (struct scm_device *scmdev, void *data, int error);  };  |