We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 39cd87c + 9519777 commit 5ceeabbCopy full SHA for 5ceeabb
drivers/i2c/busses/i2c-pxa.c
@@ -324,6 +324,7 @@ static void decode_ISR(unsigned int val)
324
decode_bits(KERN_DEBUG "ISR", isr_bits, ARRAY_SIZE(isr_bits), val);
325
}
326
327
+#ifdef CONFIG_I2C_PXA_SLAVE
328
static const struct bits icr_bits[] = {
329
PXA_BIT(ICR_START, "START", NULL),
330
PXA_BIT(ICR_STOP, "STOP", NULL),
@@ -342,7 +343,6 @@ static const struct bits icr_bits[] = {
342
343
PXA_BIT(ICR_UR, "UR", "ur"),
344
};
345
-#ifdef CONFIG_I2C_PXA_SLAVE
346
static void decode_ICR(unsigned int val)
347
{
348
decode_bits(KERN_DEBUG "ICR", icr_bits, ARRAY_SIZE(icr_bits), val);
0 commit comments