arch/microblaze: Move dma_mask from of_device into pdev_archdata
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / microblaze / include / asm / device.h
blob123b2fe72d01f93a82076a87548e1050bead7d07
1 /*
2 * Arch specific extensions to struct device
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License v2. See the file "COPYING" in the main directory of this archive
6 * for more details.
7 */
9 #ifndef _ASM_MICROBLAZE_DEVICE_H
10 #define _ASM_MICROBLAZE_DEVICE_H
12 struct device_node;
14 struct dev_archdata {
15 /* DMA operations on that device */
16 struct dma_map_ops *dma_ops;
17 void *dma_data;
20 struct pdev_archdata {
21 u64 dma_mask;
24 #endif /* _ASM_MICROBLAZE_DEVICE_H */