* Christoph Hellwig <h...@lst.de> wrote:

> +struct dma_map_ops xen_swiotlb_dma_ops = {
> +     .mapping_error = xen_swiotlb_dma_mapping_error,
> +     .alloc = xen_swiotlb_alloc_coherent,
> +     .free = xen_swiotlb_free_coherent,
> +     .sync_single_for_cpu = xen_swiotlb_sync_single_for_cpu,
> +     .sync_single_for_device = xen_swiotlb_sync_single_for_device,
> +     .sync_sg_for_cpu = xen_swiotlb_sync_sg_for_cpu,
> +     .sync_sg_for_device = xen_swiotlb_sync_sg_for_device,
> +     .map_sg = xen_swiotlb_map_sg_attrs,
> +     .unmap_sg = xen_swiotlb_unmap_sg_attrs,
> +     .map_page = xen_swiotlb_map_page,
> +     .unmap_page = xen_swiotlb_unmap_page,
> +     .dma_supported = xen_swiotlb_dma_supported,
> +     .set_dma_mask = xen_swiotlb_set_dma_mask,
> +};

Please organize such initializers better! Something like this:

struct dma_map_ops xen_swiotlb_dma_ops = {
        .mapping_error          = xen_swiotlb_dma_mapping_error,
        .alloc                  = xen_swiotlb_alloc_coherent,
        .free                   = xen_swiotlb_free_coherent,
        .sync_single_for_cpu    = xen_swiotlb_sync_single_for_cpu,
        .sync_single_for_device = xen_swiotlb_sync_single_for_device,
        .sync_sg_for_cpu        = xen_swiotlb_sync_sg_for_cpu,
        .sync_sg_for_device     = xen_swiotlb_sync_sg_for_device,
        .map_sg                 = xen_swiotlb_map_sg_attrs,
        .unmap_sg               = xen_swiotlb_unmap_sg_attrs,
        .map_page               = xen_swiotlb_map_page,
        .unmap_page             = xen_swiotlb_unmap_page,
        .dma_supported          = xen_swiotlb_dma_supported,
        .set_dma_mask           = xen_swiotlb_set_dma_mask,
};

Makes it much easier to review such definitions.

Thanks,

        Ingo

Reply via email to