Changeset 717 for GPL/trunk/include
- Timestamp:
- Aug 7, 2022, 6:11:12 PM (3 years ago)
- Location:
- GPL/trunk
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/trunk
- Property svn:mergeinfo changed
/GPL/branches/uniaud32-next merged: 710-716
- Property svn:mergeinfo changed
-
GPL/trunk/include/linux/device.h
r679 r717 290 290 /* debugging and troubleshooting/diagnostic helpers. */ 291 291 extern const char *dev_driver_string(const struct device *dev); 292 292 #define devm_kzalloc(A, B, C) kzalloc(B, C) 293 #define devm_kmalloc(A, B, C) kmalloc(B, C) 294 #define devm_kcalloc(A, B, C, D) kmalloc(B, C) 295 #define devm_kmalloc_array(A, B, C, D) kmalloc_array(B, C, D) 296 297 298 /* allows to add/remove a custom action to devres stack */ 299 int devm_add_action(struct device *dev, void (*action)(void *), void *data); 300 void devm_remove_action(struct device *dev, void (*action)(void *), void *data); 293 301 #endif /* _LINUX_DEVICE_H */ 294 302 -
GPL/trunk/include/linux/interrupt.h
r679 r717 154 154 155 155 static inline void devm_free_irq(struct device *dev, unsigned int irq, void *dev_id) {} 156 #define devm_request_irq(A, B, C, D, E, F) request_irq(B, C, D, E, F) 157 156 158 #endif -
GPL/trunk/include/linux/io.h
r679 r717 7 7 #include <linux/err.h> 8 8 9 #define devm_ioremap(A, B, C) ioremap(B, C) 9 10 #endif /* _LINUX_IO_H */ -
GPL/trunk/include/linux/ioport.h
r679 r717 111 111 extern int autoirq_report(int waittime); 112 112 113 #define devm_request_region(A, B, C, D) request_region(B, C, D) 113 114 #endif /* _LINUX_IOPORT_H */ -
GPL/trunk/include/linux/leds.h
r679 r717 20 20 }; 21 21 22 enum led_audio { 23 LED_AUDIO_MUTE, /* master mute LED */ 24 LED_AUDIO_MICMUTE, /* mic mute LED */ 25 NUM_AUDIO_LEDS 26 }; 22 27 #endif /* _LINUX_LEDS_H */ -
GPL/trunk/include/linux/pci.h
r709 r717 770 770 771 771 #define dev_is_pci(d) (true) 772 772 int pcim_enable_device(struct pci_dev *pdev); 773 #define pcim_iomap pci_iomap 774 int pcim_iomap_regions(struct pci_dev *pdev, int mask, const char *name); 773 775 #endif /* LINUX_PCI_H */ -
GPL/trunk/include/linux/pm.h
r689 r717 246 246 struct device * pm_parent; 247 247 struct list_head entry; 248 enum rpm_status runtime_status; 248 249 }; 249 250 -
GPL/trunk/include/linux/string.h
r679 r717 30 30 #define vmemdup_user memdup_user 31 31 #define scnprintf snprintf 32 ssize_t strscpy(char *dest, const char *src, size_t count); 33 32 34 #endif 33 35
Note:
See TracChangeset
for help on using the changeset viewer.