Home
last modified time | relevance | path

Searched refs:newvalue (Results 1 – 4 of 4) sorted by relevance

/linux-4.4.14/arch/arm/mach-s3c64xx/
Dcommon.c287 u32 newvalue = 0; in s3c_irq_eint_set_type() local
304 newvalue = S3C2410_EXTINT_RISEEDGE; in s3c_irq_eint_set_type()
308 newvalue = S3C2410_EXTINT_FALLEDGE; in s3c_irq_eint_set_type()
312 newvalue = S3C2410_EXTINT_BOTHEDGE; in s3c_irq_eint_set_type()
316 newvalue = S3C2410_EXTINT_LOWLEV; in s3c_irq_eint_set_type()
320 newvalue = S3C2410_EXTINT_HILEV; in s3c_irq_eint_set_type()
336 ctrl |= newvalue << shift; in s3c_irq_eint_set_type()
/linux-4.4.14/drivers/staging/rtl8712/
Dxmit_linux.c111 u8 oldvalue = 0x00, newvalue = 0x00; in r8712_SetFilter() local
115 newvalue = oldvalue & 0xfe; in r8712_SetFilter()
116 r8712_write8(padapter, 0x117, newvalue); in r8712_SetFilter()
/linux-4.4.14/drivers/net/wireless/ath/carl9170/
Dhw.h805 #define SET_VAL(reg, value, newvalue) \ argument
806 (value = ((value) & ~reg) | (((newvalue) << reg##_S) & reg))
808 #define SET_CONSTVAL(reg, newvalue) \ argument
809 (((newvalue) << reg##_S) & reg)
811 #define MOD_VAL(reg, value, newvalue) \ argument
812 (((value) & ~reg) | (((newvalue) << reg##_S) & reg))
/linux-4.4.14/drivers/irqchip/
Dirq-s3c24xx.c172 unsigned long newvalue = 0, value; in s3c_irqext_type_set() local
187 newvalue = S3C2410_EXTINT_RISEEDGE; in s3c_irqext_type_set()
191 newvalue = S3C2410_EXTINT_FALLEDGE; in s3c_irqext_type_set()
195 newvalue = S3C2410_EXTINT_BOTHEDGE; in s3c_irqext_type_set()
199 newvalue = S3C2410_EXTINT_LOWLEV; in s3c_irqext_type_set()
203 newvalue = S3C2410_EXTINT_HILEV; in s3c_irqext_type_set()
212 value = (value & ~(7 << extint_offset)) | (newvalue << extint_offset); in s3c_irqext_type_set()