Skip to content

Commit

Permalink
x86, intel_mid: Replace memcpy with struct assignment
Browse files Browse the repository at this point in the history
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: Fengguang 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: David Cohen <david.a.cohen@linux.intel.com>
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
  • Loading branch information
Fengguang Wu authored and H. Peter Anvin committed Jan 17, 2014
1 parent 28c6a39 commit ee87c75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/x86/platform/intel-mid/sfi.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand All @@ -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;
Expand Down

0 comments on commit ee87c75

Please sign in to comment.