Bluetooth: coredump: Do not export hci_devcd_rx() and hci_devcd_timeout()

Do not export both functions since they are only used internally
within the bluetooth module.

Signed-off-by: Zijun Hu <zijun.hu@oss.qualcomm.com>
Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
This commit is contained in:
Zijun Hu 2026-07-08 21:14:53 -07:00 committed by Luiz Augusto von Dentz
parent 335d7bd554
commit e6b4232bde

View File

@ -390,7 +390,6 @@ void hci_devcd_rx(struct work_struct *work)
hci_dev_unlock(hdev);
}
}
EXPORT_SYMBOL(hci_devcd_rx);
void hci_devcd_timeout(struct work_struct *work)
{
@ -416,7 +415,6 @@ void hci_devcd_timeout(struct work_struct *work)
hci_dev_unlock(hdev);
}
EXPORT_SYMBOL(hci_devcd_timeout);
int hci_devcd_register(struct hci_dev *hdev, coredump_t coredump,
dmp_hdr_t dmp_hdr, notify_change_t notify_change)