Files
Linux_Drivers/freertos/cvitek/common/include/cv1835/linux/property.h
carbon ca03037500 freertos: release the generic version source code
freertos runs on the second core (small one) of the CPU
2023-10-19 14:31:43 +08:00

10 lines
211 B
C

#include "linux/device.h"
#include "linux/types.h"
inline int device_property_read_u32(struct device *dev,
const char *propname, u32 *val)
{
return device_property_read_u32_array(dev, propname, val, 1);
}