diff options
author | Angel Pons <th3fanbus@gmail.com> | 2021-05-17 18:46:41 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-05-20 07:58:01 +0000 |
commit | 4cedb8c3a9075a7137dd04614cda2feba68fb1a7 (patch) | |
tree | 25ee11e6e4e693d083e83ae44792ebcb13885777 /src/soc/intel/baytrail/include | |
parent | a949e3019117b6b257d674dd538ce1697e2cebcb (diff) |
baytrail: Factor out INT15 handler
The handler is the same on all Bay Trail mainboards. Factor it out.
Change-Id: Ia1b6faaca4792cda5f14948d23498182bf4bb2c3
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/54415
Reviewed-by: Paul Menzel <paulepanter@mailbox.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-by: Benjamin Doron <benjamin.doron00@gmail.com>
Reviewed-by: Máté Kukri <kukri.mate@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/baytrail/include')
-rw-r--r-- | src/soc/intel/baytrail/include/soc/int15.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/soc/intel/baytrail/include/soc/int15.h b/src/soc/intel/baytrail/include/soc/int15.h new file mode 100644 index 0000000000..cab911554e --- /dev/null +++ b/src/soc/intel/baytrail/include/soc/int15.h @@ -0,0 +1,8 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ + +#ifndef SOC_INTEL_BAYTRAIL_INT15_H +#define SOC_INTEL_BAYTRAIL_INT15_H + +void install_baytrail_vga_int15_handler(void); + +#endif /* !SOC_INTEL_BAYTRAIL_INT15_H */ |