Skip to content

Commit c601512

Browse files
committed
Format chipset.c
1 parent 99a3d3a commit c601512

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/arm/linux/chipset.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -931,13 +931,15 @@ static bool match_t(const char* start, const char* end, struct cpuinfo_arm_chips
931931
/* Check that string starts with "Unisoc T" or "UNISOC T". The first four characters
932932
* are loaded as 32-bit little endian word */
933933
const uint32_t expected_unis = load_u32le(start);
934-
if (expected_unis != UINT32_C(0x73696E55) /* "sinU" = reverse("Unis") */ && expected_unis != UINT32_C(0x53494E55) /* "SINU" = reverse("UNIS") */) {
934+
if (expected_unis != UINT32_C(0x73696E55) /* "sinU" = reverse("Unis") */ &&
935+
expected_unis != UINT32_C(0x53494E55) /* "SINU" = reverse("UNIS") */) {
935936
return false;
936937
}
937938

938939
/* The next four characters are loaded as 32-bit little endian word */
939940
const uint32_t expected_oc_t = load_u32le(start + 4);
940-
if (expected_oc_t != UINT32_C(0x5420636F) /* "T co" = reverse("oc T") */ && expected_oc_t != UINT32_C(0x5420434F) /* "T CO" = reverse("OC T") */) {
941+
if (expected_oc_t != UINT32_C(0x5420636F) /* "T co" = reverse("oc T") */ &&
942+
expected_oc_t != UINT32_C(0x5420434F) /* "T CO" = reverse("OC T") */) {
941943
return false;
942944
}
943945

0 commit comments

Comments
 (0)