[COMMON] mm: hpa: fix parameter that hides global identifier
authorCho KyongHo <pullip.cho@samsung.com>
Fri, 12 May 2017 11:54:25 +0000 (20:54 +0900)
committerSangwook Ju <sw.ju@samsung.com>
Mon, 14 May 2018 10:45:25 +0000 (19:45 +0900)
commit937cc3d00b30677e3d06d882140835a355c78718
treebc1428afc06c969571f87997d4953b3d60de39f6
parente15a5d20948d52793d104d4be35bde09492191c3
[COMMON] mm: hpa: fix parameter that hides global identifier

The first parameter to is_movable_chunk() is start_pfn that is
declared as a global variable with the file scope. It is not harm
even though the parameter hids the global variable but it causes
the readers confusing so that it likely leads a mistake in the change
of some statements in the function.
Therefore the name of the first parameter to is_movable_chunk() is
changed and modified the logic of the body of is_movable_chunk() for
clear understanding.

Change-Id: I7b97aefb0b25dd09ca6c22fe0077b3d76b372210
Signed-off-by: Cho KyongHo <pullip.cho@samsung.com>
mm/hpa.c