Changeset 737 for GPL/branches/uniaud32-exp/include/linux/device.h
- Timestamp:
- Sep 18, 2022, 7:39:50 AM (3 years ago)
- File:
-
- 1 edited
-
GPL/branches/uniaud32-exp/include/linux/device.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
GPL/branches/uniaud32-exp/include/linux/device.h
r730 r737 42 42 43 43 const struct dev_pm_ops *pm; 44 }; 45 46 struct device_dma_parameters { 47 /* 48 * a low level driver may set these to teach IOMMU code about 49 * sg limitations. 50 */ 51 unsigned int max_segment_size; 52 unsigned int min_align_mask; 53 unsigned long segment_boundary_mask; 44 54 }; 45 55 … … 67 77 void *platform_data; 68 78 struct dev_pm_info power; 79 struct device_dma_parameters *dma_parms; 69 80 struct list_head dma_pools; /* dma pools (if dma'ble) */ 70 81 struct device_driver *driver; … … 333 344 } 334 345 346 /* Generic device matching functions that all busses can use to match with */ 347 int device_match_name(struct device *dev, const void *name); 348 int device_match_of_node(struct device *dev, const void *np); 349 335 350 #endif /* _LINUX_DEVICE_H */ 336 351
Note:
See TracChangeset
for help on using the changeset viewer.
