mirror of
				git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
				synced 2025-10-31 16:54:21 +00:00 
			
		
		
		
	s390/ctl_reg: add ctlreg5 and ctlreg15 unions
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
This commit is contained in:
		
							parent
							
								
									7accd1f864
								
							
						
					
					
						commit
						97dd89e901
					
				
					 1 changed files with 17 additions and 0 deletions
				
			
		|  | @ -111,6 +111,23 @@ union ctlreg2 { | |||
| 	}; | ||||
| }; | ||||
| 
 | ||||
| union ctlreg5 { | ||||
| 	unsigned long val; | ||||
| 	struct { | ||||
| 		unsigned long	    : 33; | ||||
| 		unsigned long pasteo: 25; | ||||
| 		unsigned long	    : 6; | ||||
| 	}; | ||||
| }; | ||||
| 
 | ||||
| union ctlreg15 { | ||||
| 	unsigned long val; | ||||
| 	struct { | ||||
| 		unsigned long lsea  : 61; | ||||
| 		unsigned long	    : 3; | ||||
| 	}; | ||||
| }; | ||||
| 
 | ||||
| #define ctl_set_bit(cr, bit) smp_ctl_set_bit(cr, bit) | ||||
| #define ctl_clear_bit(cr, bit) smp_ctl_clear_bit(cr, bit) | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		
		Reference in a new issue
	
	 Heiko Carstens
						Heiko Carstens