mirror of https://gitee.com/openkylin/linux.git
staging: comedi: s626: move struct buffer_dma
Move the declaration of `struct buffer_dma` from "s626.h" to "s626.c" as it seems more at home there. After this move, "s626.h" just contains macros related to hardware registers. Signed-off-by: Ian Abbott <abbotti@mev.co.uk> Reviewed-by: H Hartley Sweeten <hsweeten@visionengravers.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
a3ae88f83b
commit
8e06d66287
|
@ -71,6 +71,11 @@
|
||||||
#include "comedi_fc.h"
|
#include "comedi_fc.h"
|
||||||
#include "s626.h"
|
#include "s626.h"
|
||||||
|
|
||||||
|
struct buffer_dma {
|
||||||
|
dma_addr_t physical_base;
|
||||||
|
void *logical_base;
|
||||||
|
};
|
||||||
|
|
||||||
struct s626_private {
|
struct s626_private {
|
||||||
void __iomem *mmio;
|
void __iomem *mmio;
|
||||||
uint8_t ai_cmd_running; /* ai_cmd is running */
|
uint8_t ai_cmd_running; /* ai_cmd is running */
|
||||||
|
|
|
@ -614,9 +614,4 @@
|
||||||
#define STDMSK_CLKMULT (3 << STDBIT_CLKMULT)
|
#define STDMSK_CLKMULT (3 << STDBIT_CLKMULT)
|
||||||
#define STDMSK_CLKENAB (1 << STDBIT_CLKENAB)
|
#define STDMSK_CLKENAB (1 << STDBIT_CLKENAB)
|
||||||
|
|
||||||
struct buffer_dma {
|
|
||||||
dma_addr_t physical_base;
|
|
||||||
void *logical_base;
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue