drivers: dacx0508: fix for multiple DACs of the same type
Presently, this driver cannot handle multiple DACs of the same type without throwing a compile error due to a missing line ending. This PR fixes that issue by adding the missing line ending. Signed-off-by: Kyle Kotowick <kotowick@invictonlabs.com>
This commit is contained in:
parent
ba2a8bd795
commit
0d53af4aa1
|
@ -386,7 +386,7 @@ static const struct dac_driver_api dacx0508_driver_api = {
|
|||
&dac##t##_data_##n, \
|
||||
&dac##t##_config_##n, POST_KERNEL, \
|
||||
CONFIG_DAC_DACX0508_INIT_PRIORITY, \
|
||||
&dacx0508_driver_api)
|
||||
&dacx0508_driver_api);
|
||||
|
||||
/*
|
||||
* DAC60508: 12-bit
|
||||
|
|
Loading…
Reference in a new issue