diff options
| author | Tom Rini <[email protected]> | 2025-07-11 09:20:16 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-07-18 12:22:11 -0600 |
| commit | 786e1f6dea07126b0265fcb6e8f5010d8d3e0e40 (patch) | |
| tree | 54a564310b02fe862b4f65bc120220e8ba5f7a1f | |
| parent | a05c01c8e65dac94060d3a74220ac3da84e1cb82 (diff) | |
sandbox: Add dummy sync()
In order to compile more drivers, add an empty sync() function.
Signed-off-by: Tom Rini <[email protected]>
| -rw-r--r-- | arch/sandbox/include/asm/io.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/sandbox/include/asm/io.h b/arch/sandbox/include/asm/io.h index 6e3f9547fee..11ed89e0071 100644 --- a/arch/sandbox/include/asm/io.h +++ b/arch/sandbox/include/asm/io.h @@ -8,6 +8,10 @@ #include <linux/types.h> +static inline void sync(void) +{ +} + enum sandboxio_size_t { SB_SIZE_8, SB_SIZE_16, |
