radv: drop the return type for radv_queue_init()
authorMun Gwan-gyeong <elongbug@gmail.com>
Fri, 25 Nov 2016 14:34:44 +0000 (23:34 +0900)
committerDave Airlie <airlied@redhat.com>
Sun, 27 Nov 2016 23:00:57 +0000 (23:00 +0000)
radv_queue_init() always returns VK_SUCCESS, so caller does not need
to check return value of radv_queue_init().

Signed-off-by: Mun Gwan-gyeong <elongbug@gmail.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
src/amd/vulkan/radv_device.c

index 1b8864d..3559c30 100644 (file)
@@ -611,13 +611,11 @@ void radv_GetPhysicalDeviceMemoryProperties(
        };
 }
 
-static VkResult
+static void
 radv_queue_init(struct radv_device *device, struct radv_queue *queue)
 {
        queue->_loader_data.loaderMagic = ICD_LOADER_MAGIC;
        queue->device = device;
-
-       return VK_SUCCESS;
 }
 
 static void