On 19/04/2024 10:47, Ricardo Ribalda wrote:
- if (irq <= 0) {
<snip>
- return irq ? irq : -ENXIO; - }
You're dropping the original intent of the driver author there no ? when irq == 0 they want to return -ENXIO.
--- bod
On 19/04/2024 10:47, Ricardo Ribalda wrote:
- if (irq <= 0) {
<snip>
- return irq ? irq : -ENXIO; - }
You're dropping the original intent of the driver author there no ? when irq == 0 they want to return -ENXIO.
--- bod