ANDROID: fix up crc generation for uart functions

In commit f59e2391d3 ("serial: port: Introduce a common helper to read
properties"), 3 new header files got included in the serial_port.c file.
That caused the crc generation of some uart exported functions to
change, despite nothing actually changing overall.

fix this up by using the GENKSYMS hack to preserve the abi.

Bug: 161946584
Fixes: f59e2391d3 ("serial: port: Introduce a common helper to read properties")
Change-Id: I04666d802e7972f0fd5fbac75d3db8cfc6bc5f7f
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
This commit is contained in:
Greg Kroah-Hartman 2024-06-25 12:18:02 +00:00
parent f534c7c7bd
commit b9dbfe1a97

View File

@ -8,10 +8,12 @@
#include <linux/device.h>
#include <linux/module.h>
#ifndef __GENKSYMS__
#include <linux/of.h>
#include <linux/platform_device.h>
#include <linux/pm_runtime.h>
#include <linux/property.h>
#endif
#include <linux/pm_runtime.h>
#include <linux/serial_core.h>
#include <linux/spinlock.h>