-
Notifications
You must be signed in to change notification settings - Fork 5k
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
component: Silence bind error on -EPROBE_DEFER #3539
Conversation
Acked by me. |
Upstream submission for reference https://patchwork.kernel.org/patch/11483959/. |
If a component fails to bind due to -EPROBE_DEFER we should not log an error as this is not a real failure. Fixes: vc4-drm soc:gpu: failed to bind 3f902000.hdmi (ops vc4_hdmi_ops): -517 vc4-drm soc:gpu: master bind failed: -517 Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
9ea049c
to
d4998ac
Compare
Thanks. |
C doesn't distinguish between spaces, TABs and newlines, so splitting a statement across multiple lines makes no difference. Braces would be needed if there were two statements within the body of the if. |
Ah, probably mixed that up since I mostly write Python code day to day. |
Upstream v2 patch with braces removed https://patchwork.kernel.org/patch/11484225/. |
kernel: configs: Add AUDIOINJECTOR_ISOLATED for Pi3 64-bit kernel: overlays: Fix dtc warnings in i2c-gpio kernel: media: rc: IR signal for Panasonic air conditioner too long kernel: sound:soc:codecs:ma120x0p.c update and added to defconfigs See: raspberrypi/linux#3534 kernel: drm/vc4: hdmi: Silence pixel clock error on -EPROBE_DEFER See: raspberrypi/linux#3538 kernel: component: Silence bind error on -EPROBE_DEFER See: raspberrypi/linux#3539 kernel: Fixes a problem with clock settings of HiFiBerry DAC+ADC PRO See: raspberrypi/linux#3545 kernel: ARM: dts: Extend SCB bus address range kernel: dts: bcm2711: Move emmc2 to its own bus kernel: dts: bcm2711: Restore emmc2 regulator, brokencd
kernel: configs: Add AUDIOINJECTOR_ISOLATED for Pi3 64-bit kernel: overlays: Fix dtc warnings in i2c-gpio kernel: media: rc: IR signal for Panasonic air conditioner too long kernel: sound:soc:codecs:ma120x0p.c update and added to defconfigs See: raspberrypi/linux#3534 kernel: drm/vc4: hdmi: Silence pixel clock error on -EPROBE_DEFER See: raspberrypi/linux#3538 kernel: component: Silence bind error on -EPROBE_DEFER See: raspberrypi/linux#3539 kernel: Fixes a problem with clock settings of HiFiBerry DAC+ADC PRO See: raspberrypi/linux#3545 kernel: ARM: dts: Extend SCB bus address range kernel: dts: bcm2711: Move emmc2 to its own bus kernel: dts: bcm2711: Restore emmc2 regulator, brokencd
This has now landed upstream FYI. |
We noticed, thanks. rpi-5.7.y doesn't include your downstream patch. |
If a component fails to bind due to -EPROBE_DEFER we should not log an error as this is not a real failure.
Fixes:
Partial fix for #3513.