IOS/SDIO: Fix warnings about missing braces

This commit is contained in:
Léo Lam 2017-08-06 19:00:56 +08:00
parent d86d5d62ad
commit c24418a822
1 changed files with 4 additions and 4 deletions

View File

@ -579,10 +579,10 @@ std::array<u32, 4> SDIOSlot0::GetCSDv1()
constexpr u32 crc = 0; constexpr u32 crc = 0;
// Form the csd using the description above // Form the csd using the description above
return { return {{
0x007f003, 0x5b5f8000 | (c_size >> 2), 0x3ffc7f80 | (c_size << 30) | (c_size_mult << 15), 0x007f003, 0x5b5f8000 | (c_size >> 2), 0x3ffc7f80 | (c_size << 30) | (c_size_mult << 15),
0x07c04001 | (crc << 1), 0x07c04001 | (crc << 1),
}; }};
} }
std::array<u32, 4> SDIOSlot0::GetCSDv2() std::array<u32, 4> SDIOSlot0::GetCSDv2()
@ -634,9 +634,9 @@ std::array<u32, 4> SDIOSlot0::GetCSDv2()
constexpr u32 crc = 0; constexpr u32 crc = 0;
// Form the csd using the description above // Form the csd using the description above
return { return {{
0x400e005a, 0x5f590000 | (c_size >> 16), 0x00007f80 | (c_size << 16), 0x0a400001 | (crc << 1), 0x400e005a, 0x5f590000 | (c_size >> 16), 0x00007f80 | (c_size << 16), 0x0a400001 | (crc << 1),
}; }};
} }
u64 SDIOSlot0::GetAddressFromRequest(u32 arg) const u64 SDIOSlot0::GetAddressFromRequest(u32 arg) const