Skip to content
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

Fix compilation errors / warnings #8547

Merged
merged 2 commits into from
Nov 29, 2023
Merged

Commits on Nov 28, 2023

  1. include: sof: common.h Fix compilation error

    Commit 16d126a ("audio: Header files cleanup") removed
    rtos/panic.h include but this is still needed.
    
    Otherwise, we get the following compilation error:
    
    /work/repos/sof/src/lib/lib.c: In function ‘memset’:
    /work/repos/sof/src/lib/lib.c:31: warning: implicit declaration of function ‘sof_panic’
    
    Fixes: 16d126a ("audio: Header files cleanup")
    Signed-off-by: Daniel Baluta <[email protected]>
    dbaluta committed Nov 28, 2023
    Configuration menu
    Copy the full SHA
    f2b2f80 View commit details
    Browse the repository at this point in the history
  2. audio: drc_hifi4: Fix compilation warnings

    This fixes following compilation warnings:
    
    repos/sof/src/audio/drc/drc_hifi4.c: In function ‘drc_delay_input_sample_s16’:
    repos/sof/src/audio/drc/drc_hifi4.c:580: warning: assignment from incompatible pointer type
    repos/sof/src/audio/drc/drc_hifi4.c:581: warning: assignment from incompatible pointer type
    repos/sof/src/audio/drc/drc_hifi4.c: In function ‘drc_delay_input_sample_s32’:
    repos/sof/src/audio/drc/drc_hifi4.c:718: warning: assignment from incompatible pointer type
    repos/sof/src/audio/drc/drc_hifi4.c:719: warning: assignment from incompatible pointer type
    
    Signed-off-by: Daniel Baluta <[email protected]>
    dbaluta committed Nov 28, 2023
    Configuration menu
    Copy the full SHA
    5cca6cb View commit details
    Browse the repository at this point in the history