Commit 5a118a39 authored by Zhen Lei's avatar Zhen Lei Committed by Jarkko Sakkinen
Browse files

tpm_tis: Use DEFINE_RES_MEM() to simplify code



Use DEFINE_RES_MEM() to save a couple of lines of code, which is simpler
and more readable. The start address does not need to appear twice.

Signed-off-by: default avatarZhen Lei <thunder.leizhen@huawei.com>
Reviewed-by: default avatarJarkko Sakkinen <jarkko@kernel.org>
Signed-off-by: default avatarJarkko Sakkinen <jarkko@kernel.org>
parent 6e0fe58b
Loading
Loading
Loading
Loading
+1 −5
Original line number Diff line number Diff line
@@ -363,11 +363,7 @@ static int tpm_tis_force_device(void)
{
	struct platform_device *pdev;
	static const struct resource x86_resources[] = {
		{
			.start = 0xFED40000,
			.end = 0xFED40000 + TIS_MEM_LEN - 1,
			.flags = IORESOURCE_MEM,
		},
		DEFINE_RES_MEM(0xFED40000, TIS_MEM_LEN)
	};

	if (!force)