Home
last modified time | relevance | path

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

/linux/arch/arm/mach-s3c/
H A Ds3c64xx.c275 u32 newvalue = 0; in s3c_irq_eint_set_type() local
292 newvalue = S3C2410_EXTINT_RISEEDGE; in s3c_irq_eint_set_type()
296 newvalue = S3C2410_EXTINT_FALLEDGE; in s3c_irq_eint_set_type()
300 newvalue = S3C2410_EXTINT_BOTHEDGE; in s3c_irq_eint_set_type()
304 newvalue = S3C2410_EXTINT_LOWLEV; in s3c_irq_eint_set_type()
308 newvalue = S3C2410_EXTINT_HILEV; in s3c_irq_eint_set_type()
324 ctrl |= newvalue << shift; in s3c_irq_eint_set_type()
/linux/drivers/net/wireless/ath/carl9170/
H A Dhw.h872 #define SET_VAL(reg, value, newvalue) \ argument
873 (value = ((value) & ~reg) | (((newvalue) << reg##_S) & reg))
875 #define SET_CONSTVAL(reg, newvalue) \ argument
876 (((newvalue) << reg##_S) & reg)
878 #define MOD_VAL(reg, value, newvalue) \ argument
879 (((value) & ~reg) | (((newvalue) << reg##_S) & reg))