anv: remove unnecessary runtime copy of static string

It's actually also a bit safer, since now the compiler will warn if
the string is larger than the `.name` array.

Signed-off-by: Eric Engestrom <eric.engestrom@intel.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
This commit is contained in:
Eric Engestrom
2018-07-17 16:58:22 +01:00
parent 54f8f1545f
commit e6e22e4207
+1 -2
View File
@@ -444,12 +444,11 @@ struct sync_merge_data {
int
anv_gem_sync_file_merge(struct anv_device *device, int fd1, int fd2)
{
const char name[] = "anv merge fence";
struct sync_merge_data args = {
.name = "anv merge fence",
.fd2 = fd2,
.fence = -1,
};
memcpy(args.name, name, sizeof(name));
int ret = anv_ioctl(fd1, SYNC_IOC_MERGE, &args);
if (ret == -1)