diff options
author | Andrey Skvortsov <andrej.skvortzov@gmail.com> | 2024-02-24 00:37:03 +0300 |
---|---|---|
committer | Luiz Augusto von Dentz <luiz.von.dentz@intel.com> | 2024-03-06 17:26:21 -0500 |
commit | 7a6d793e9ca8bc0c1d2f0aa0a02ec380d1124c74 (patch) | |
tree | 1134f78381f07aac09d0a63245ea6ccb3e86f17e /drivers/bluetooth/hci_h5.c | |
parent | 2615fd9a7c2507eb3be3fbe49dcec88a2f56454a (diff) | |
download | linux-7a6d793e9ca8bc0c1d2f0aa0a02ec380d1124c74.tar.gz linux-7a6d793e9ca8bc0c1d2f0aa0a02ec380d1124c74.tar.bz2 linux-7a6d793e9ca8bc0c1d2f0aa0a02ec380d1124c74.zip |
Bluetooth: hci_h5: Add ability to allocate memory for private data
In some cases uart-base drivers may need to use priv data. For
example, to store information needed for devcoredump.
Fixes: 044014ce85a1 ("Bluetooth: btrtl: Add Realtek devcoredump support")
Signed-off-by: Andrey Skvortsov <andrej.skvortzov@gmail.com>
Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
Diffstat (limited to 'drivers/bluetooth/hci_h5.c')
-rw-r--r-- | drivers/bluetooth/hci_h5.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/bluetooth/hci_h5.c b/drivers/bluetooth/hci_h5.c index 71e748a9477e..b66136348bd6 100644 --- a/drivers/bluetooth/hci_h5.c +++ b/drivers/bluetooth/hci_h5.c @@ -113,6 +113,7 @@ struct h5_vnd { int (*suspend)(struct h5 *h5); int (*resume)(struct h5 *h5); const struct acpi_gpio_mapping *acpi_gpio_map; + int sizeof_priv; }; struct h5_device_data { @@ -863,7 +864,8 @@ static int h5_serdev_probe(struct serdev_device *serdev) if (IS_ERR(h5->device_wake_gpio)) return PTR_ERR(h5->device_wake_gpio); - return hci_uart_register_device(&h5->serdev_hu, &h5p); + return hci_uart_register_device_priv(&h5->serdev_hu, &h5p, + h5->vnd->sizeof_priv); } static void h5_serdev_remove(struct serdev_device *serdev) |