diff options
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);  }; |