-
Notifications
You must be signed in to change notification settings - Fork 6.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tests: drivers: build_all: adc: Add spi-devices build test #78580
tests: drivers: build_all: adc: Add spi-devices build test #78580
Conversation
The `default y`, which is coupled with depends on DT_HAS_TI_ADS1112_ENABLED to link the settings with DeviceTree, which was missing, so I added it. Signed-off-by: TOKITA Hiroshi <tokita.hiroshi@gmail.com>
7d650c7
to
343ed68
Compare
Remove unused variables for suppress warnings Signed-off-by: TOKITA Hiroshi <tokita.hiroshi@gmail.com>
343ed68
to
c264eb8
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please make commit title more specific about this device
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Update done.
Thank you for your check.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please make commit title more specific about this device
c264eb8
to
26a4608
Compare
26a4608
to
e8cbb88
Compare
@anangl |
@@ -344,6 +344,13 @@ | |||
#io-channel-cells = <1>; | |||
}; | |||
}; | |||
|
|||
test_spi_tla2021: tla2021@20 { | |||
compatible = "ti,tla2021"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is an I2C device, not an SPI one.
Add configuration for ti,tla2021 to enable build test. Signed-off-by: TOKITA Hiroshi <tokita.hiroshi@gmail.com>
e8cbb88
to
9bbaaf4
Compare
Add build tests for following devices.
And ADS1112 was not enabled correctly, so I fixed it.