commit | aec0b5ae84395858974943a339e8280df7355c89 | [log] [tgz] |
---|---|---|
author | Marcin Niestroj <m.niestroj@grinn-global.com> | Fri Jul 17 20:21:39 2020 +0200 |
committer | Anas Nashif <anas.nashif@intel.com> | Sat Jul 18 08:43:18 2020 -0400 |
tree | 7c395d9c886a4807ed3ade29b1fdd551ef04f767 | |
parent | 4df734683e2aec5f3287bc5eedeb5bb2a1f9a6e5 [diff] |
mgmt: smp: add missing kernel.h include statement There is following error when compiling applications using smp: /zephyr/include/mgmt/smp.h:77:16: error: field 'zst_work' has \ incomplete type 77 | struct k_work zst_work; | ^~~~~~~~ /zephyr/include/mgmt/smp.h:80:16: error: field 'zst_fifo' has \ incomplete type 80 | struct k_fifo zst_fifo; | ^~~~~~~~ Fix that by adding missing kernel.h include statement in mgmt/smp.h. Signed-off-by: Marcin Niestroj <m.niestroj@grinn-global.com>