| .. | .. |
|---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-only */ |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * fence-array: aggregates fence to be waited together |
|---|
| 3 | 4 | * |
|---|
| .. | .. |
|---|
| 6 | 7 | * Authors: |
|---|
| 7 | 8 | * Gustavo Padovan <gustavo@padovan.org> |
|---|
| 8 | 9 | * Christian König <christian.koenig@amd.com> |
|---|
| 9 | | - * |
|---|
| 10 | | - * This program is free software; you can redistribute it and/or modify it |
|---|
| 11 | | - * under the terms of the GNU General Public License version 2 as published by |
|---|
| 12 | | - * the Free Software Foundation. |
|---|
| 13 | | - * |
|---|
| 14 | | - * This program is distributed in the hope that it will be useful, but WITHOUT |
|---|
| 15 | | - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|---|
| 16 | | - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
|---|
| 17 | | - * more details. |
|---|
| 18 | 10 | */ |
|---|
| 19 | 11 | |
|---|
| 20 | 12 | #ifndef __LINUX_DMA_FENCE_ARRAY_H |
|---|
| .. | .. |
|---|
| 40 | 32 | * @num_fences: number of fences in the array |
|---|
| 41 | 33 | * @num_pending: fences in the array still pending |
|---|
| 42 | 34 | * @fences: array of the fences |
|---|
| 35 | + * @work: internal irq_work function |
|---|
| 43 | 36 | */ |
|---|
| 44 | 37 | struct dma_fence_array { |
|---|
| 45 | 38 | struct dma_fence base; |
|---|