Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'i2c-for-6.9-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux

Pull i2c fix from Wolfram Sang:
"A host driver build fix"

* tag 'i2c-for-6.9-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux:
i2c: pxa: hide unused icr_bits[] variable

+1 -1
+1 -1
drivers/i2c/busses/i2c-pxa.c
··· 324 324 decode_bits(KERN_DEBUG "ISR", isr_bits, ARRAY_SIZE(isr_bits), val); 325 325 } 326 326 327 + #ifdef CONFIG_I2C_PXA_SLAVE 327 328 static const struct bits icr_bits[] = { 328 329 PXA_BIT(ICR_START, "START", NULL), 329 330 PXA_BIT(ICR_STOP, "STOP", NULL), ··· 343 342 PXA_BIT(ICR_UR, "UR", "ur"), 344 343 }; 345 344 346 - #ifdef CONFIG_I2C_PXA_SLAVE 347 345 static void decode_ICR(unsigned int val) 348 346 { 349 347 decode_bits(KERN_DEBUG "ICR", icr_bits, ARRAY_SIZE(icr_bits), val);