Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f6e495a2 authored by Rasmus Villemoes's avatar Rasmus Villemoes Committed by Christoph Hellwig
Browse files

mptfusion: simplify rounding



Rounding up to a multiple of 4 should be done using the ALIGN
macro. As a bonus, this also makes the generated code smaller.

In GetIocFacts(), sz is assigned to a few lines below without being
read in the meantime, so it is ok that it doesn't end up with the same
value as facts->FWImageSize.

Signed-off-by: default avatarRasmus Villemoes <linux@rasmusvillemoes.dk>
Reviewed-by: default avatarJoe Lawrence <joe.lawrence@stratus.com>
Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
parent 84e32a06
Loading
Loading
Loading
Loading
+1 −6
Original line number Diff line number Diff line
@@ -3172,12 +3172,7 @@ GetIocFacts(MPT_ADAPTER *ioc, int sleepFlag, int reason)
			facts->FWImageSize = le32_to_cpu(facts->FWImageSize);
		}

		sz = facts->FWImageSize;
		if ( sz & 0x01 )
			sz += 1;
		if ( sz & 0x02 )
			sz += 2;
		facts->FWImageSize = sz;
		facts->FWImageSize = ALIGN(facts->FWImageSize, 4);

		if (!facts->RequestFrameSize) {
			/*  Something is wrong!  */
+1 −6
Original line number Diff line number Diff line
@@ -1741,12 +1741,7 @@ mptctl_replace_fw (unsigned long arg)

	/* Allocate memory for the new FW image
	 */
	newFwSize = karg.newImageSize;

	if (newFwSize & 0x01)
		newFwSize += 1;
	if (newFwSize & 0x02)
		newFwSize += 2;
	newFwSize = ALIGN(karg.newImageSize, 4);

	mpt_alloc_fw_memory(ioc, newFwSize);
	if (ioc->cached_fw == NULL)