mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-10 07:00:48 +00:00
9c06002682
For the sake of integrity, include headers we are direct user of. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Link: https://lore.kernel.org/r/20220713172235.22611-4-andriy.shevchenko@linux.intel.com Signed-off-by: Vinod Koul <vkoul@kernel.org>
19 lines
321 B
C
19 lines
321 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Driver for the High Speed UART DMA
|
|
*
|
|
* Copyright (C) 2015 Intel Corporation
|
|
*/
|
|
|
|
#ifndef _PLATFORM_DATA_DMA_HSU_H
|
|
#define _PLATFORM_DATA_DMA_HSU_H
|
|
|
|
struct device;
|
|
|
|
struct hsu_dma_slave {
|
|
struct device *dma_dev;
|
|
int chan_id;
|
|
};
|
|
|
|
#endif /* _PLATFORM_DATA_DMA_HSU_H */
|