 475be4d85a
			
		
	
	
	475be4d85a
	
	
	
		
			
			isdn source code uses a not-current coding style. Update the coding style used on a per-line basis so that git diff -w shows only elided blank lines at EOF. Done with emacs and some scripts and some typing. Built x86 allyesconfig. No detected change in objdump -d or size. Signed-off-by: Joe Perches <joe@perches.com>
		
			
				
	
	
		
			41 lines
		
	
	
	
		
			1.1 KiB
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
	
		
			1.1 KiB
			
		
	
	
	
		
			C
		
	
	
	
	
	
| /* $Id: hscx.h,v 1.8.2.2 2004/01/12 22:52:26 keil Exp $
 | |
|  *
 | |
|  * HSCX specific defines
 | |
|  *
 | |
|  * Author       Karsten Keil
 | |
|  * Copyright    by Karsten Keil      <keil@isdn4linux.de>
 | |
|  *
 | |
|  * This software may be used and distributed according to the terms
 | |
|  * of the GNU General Public License, incorporated herein by reference.
 | |
|  *
 | |
|  */
 | |
| 
 | |
| /* All Registers original Siemens Spec  */
 | |
| 
 | |
| #define HSCX_ISTA 0x20
 | |
| #define HSCX_CCR1 0x2f
 | |
| #define HSCX_CCR2 0x2c
 | |
| #define HSCX_TSAR 0x31
 | |
| #define HSCX_TSAX 0x30
 | |
| #define HSCX_XCCR 0x32
 | |
| #define HSCX_RCCR 0x33
 | |
| #define HSCX_MODE 0x22
 | |
| #define HSCX_CMDR 0x21
 | |
| #define HSCX_EXIR 0x24
 | |
| #define HSCX_XAD1 0x24
 | |
| #define HSCX_XAD2 0x25
 | |
| #define HSCX_RAH2 0x27
 | |
| #define HSCX_RSTA 0x27
 | |
| #define HSCX_TIMR 0x23
 | |
| #define HSCX_STAR 0x21
 | |
| #define HSCX_RBCL 0x25
 | |
| #define HSCX_XBCH 0x2d
 | |
| #define HSCX_VSTR 0x2e
 | |
| #define HSCX_RLCR 0x2e
 | |
| #define HSCX_MASK 0x20
 | |
| 
 | |
| extern int HscxVersion(struct IsdnCardState *cs, char *s);
 | |
| extern void modehscx(struct BCState *bcs, int mode, int bc);
 | |
| extern void clear_pending_hscx_ints(struct IsdnCardState *cs);
 | |
| extern void inithscx(struct IsdnCardState *cs);
 | |
| extern void inithscxisac(struct IsdnCardState *cs, int part);
 |