i915: Remove hand-rolled memcpy implementation.
Reviewed-by: Eric Anholt <eric@anholt.net>
This commit is contained in:
@@ -246,7 +246,7 @@ intel_batchbuffer_data(struct intel_context *intel,
|
||||
{
|
||||
assert((bytes & 3) == 0);
|
||||
intel_batchbuffer_require_space(intel, bytes);
|
||||
__memcpy(intel->batch.map + intel->batch.used, data, bytes);
|
||||
memcpy(intel->batch.map + intel->batch.used, data, bytes);
|
||||
intel->batch.used += bytes >> 2;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user