Skip to content

Commit

Permalink
bluetooth: hci_mrvl: add support for SD8987
Browse files Browse the repository at this point in the history
Do not load any firmwares, and instead expect the firmware to be
initialized by the WLAN driver.

Signed-off-by: Matthias Schiffer <matthias.schiffer@ew.tq-group.com>
  • Loading branch information
schiffermtq authored and intel-lab-lkp committed Oct 26, 2022
1 parent a13e615 commit 579b105
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions drivers/bluetooth/hci_mrvl.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ static const struct mrvl_driver_info mrvl_driver_info_8897 = {
.firmware = "mrvl/uart8897_bt.bin",
};

static const struct mrvl_driver_info mrvl_driver_info_8987 = {};

/* Fallback for non-OF instances */
static const struct mrvl_driver_info *const mrvl_driver_info_default =
&mrvl_driver_info_8897;
Expand Down Expand Up @@ -452,6 +454,7 @@ static void mrvl_serdev_remove(struct serdev_device *serdev)
#ifdef CONFIG_OF
static const struct of_device_id mrvl_bluetooth_of_match[] = {
{ .compatible = "mrvl,88w8897", .data = &mrvl_driver_info_8897 },
{ .compatible = "marvell,sd8987-bt", .data = &mrvl_driver_info_8987 },
{ },
};
MODULE_DEVICE_TABLE(of, mrvl_bluetooth_of_match);
Expand Down

0 comments on commit 579b105

Please sign in to comment.