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

Commit ee87c751 authored by Fengguang Wu's avatar Fengguang Wu Committed by H. Peter Anvin
Browse files

x86, intel_mid: Replace memcpy with struct assignment



This is a cleanup proposed by coccinelle. It replaces memcpy with struct
assignment on intel-mid's sfi layer.

Generated by: coccinelle/misc/memcpy-assign.cocci

Signed-off-by: default avatarFengguang Wu <fengguang.wu@intel.com>
Link: http://lkml.kernel.org/r/1389917588-9785-1-git-send-email-david.a.cohen@linux.intel.com


Signed-off-by: default avatarDavid Cohen <david.a.cohen@linux.intel.com>
Signed-off-by: default avatarH. Peter Anvin <hpa@linux.intel.com>
parent 28c6a39b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -250,7 +250,7 @@ static void __init intel_scu_spi_device_register(struct spi_board_info *sdev)
			sdev->modalias);
		return;
	}
	memcpy(new_dev, sdev, sizeof(*sdev));
	*new_dev = *sdev;

	spi_devs[spi_next_dev++] = new_dev;
}
@@ -271,7 +271,7 @@ static void __init intel_scu_i2c_device_register(int bus,
			idev->type);
		return;
	}
	memcpy(new_dev, idev, sizeof(*idev));
	*new_dev = *idev;

	i2c_bus[i2c_next_dev] = bus;
	i2c_devs[i2c_next_dev++] = new_dev;