Ignore:
Timestamp:
Aug 5, 2022, 2:58:37 AM (3 years ago)
Author:
Paul Smedley
Message:

Update source to 5.15

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GPL/branches/uniaud32-next/include/linux/device.h

    r647 r710  
    290290/* debugging and troubleshooting/diagnostic helpers. */
    291291extern 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, D)
     295#define devm_kmalloc_array(A, B, C, D) kmalloc_array(B, C, D)
    293296#endif /* _LINUX_DEVICE_H */
    294297
Note: See TracChangeset for help on using the changeset viewer.