dsp: platform: Fix location of closing paren in overflow detection

I suspect this was the result of editor auto-parenthesis support and the
result got overlooked.

Add some tests while we're in the area.

As seems to be the case when we expand the tests associated with
argument values, also update the ABI dump to reflect the change in
recorded register allocation.

gitlint-ignore: UC1
Fixes: #13
Fixes: ad33b99abcc4 ("dsp: platform: Bounds check encode_state_effecter_pdr()")
Reported-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Change-Id: Iab4c1c337400678ac424936151a38baf0e0d554d
Signed-off-by: Andrew Jeffery <andrew@codeconstruct.com.au>
diff --git a/src/dsp/platform.c b/src/dsp/platform.c
index df7ea4a..b72fb5f 100644
--- a/src/dsp/platform.c
+++ b/src/dsp/platform.c
@@ -28,8 +28,8 @@
 		return PLDM_ERROR;
 	}
 
-	if (SIZE_MAX - (sizeof(*effecter) - sizeof(effecter->possible_states) <
-			possible_states_size)) {
+	if (SIZE_MAX - (sizeof(*effecter) - sizeof(effecter->possible_states)) <
+	    possible_states_size) {
 		return PLDM_ERROR;
 	}