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.
1 parent 526e21a commit 9f349e8Copy full SHA for 9f349e8
drivers/firewire/ohci.c
@@ -879,7 +879,7 @@ static void ar_sync_buffers_for_cpu(struct ar_context *ctx,
879
#if defined(CONFIG_PPC_PMAC) && defined(CONFIG_PPC32)
880
static u32 cond_le32_to_cpu(__le32 value, bool has_be_header_quirk)
881
{
882
- return has_be_header_quirk ? be32_to_cpu(value) : le32_to_cpu(value);
+ return has_be_header_quirk ? (__force __u32)value : le32_to_cpu(value);
883
}
884
885
static bool has_be_header_quirk(const struct fw_ohci *ohci)
0 commit comments