summaryrefslogtreecommitdiff
path: root/cpp.h
blob: 1cf0a357f9ad6aa196a0ef92a36748ddfb49c50b (plain)
1
2
3
4
5
6
#ifndef CPP_H
#define CPP_H

extern int cpp_exec(char *in_file, char *out_file, size_t out_len, char *const argv[]);

#endif
.submit();'>
authorSebastian Reichel <sre@kernel.org>2016-05-11 20:33:45 +0200
committerSebastian Reichel <sre@kernel.org>2016-06-28 00:39:15 +0200
commit7c5d81620ecd37702e86232de819eb1dd4c738e0 (patch)
tree6d47fa843b20df8ce67b842f454d07b6cefbde95
parentde5a3774dde2c2f3b3a9a48b880fd820142706f0 (diff)
HSI: omap_ssi_port: prepare start_tx/stop_tx for blocking pm_runtime calls
ssi_start_tx and ssi_stop_tx may be called from atomic context. Once pm_runtime_irq_safe() is removed for omap-ssi, this will fail, due to blocking pm_runtime_*_sync() calls. This fixes ssi_stop_tx by using non-sync API and ssi_start_tx by using a worker thread. Signed-off-by: Sebastian Reichel <sre@kernel.org> Tested-by: Pavel Machek <pavel@ucw.cz>
Diffstat
-rw-r--r--drivers/hsi/controllers/omap_ssi.h2
-rw-r--r--drivers/hsi/controllers/omap_ssi_port.c23
2 files changed, 20 insertions, 5 deletions
diff --git a/drivers/hsi/controllers/omap_ssi.h b/drivers/hsi/controllers/omap_ssi.h