Bluetooth Driver Construction

Follow the steps below to port the Bluetooth driver:
  1. Place the aic8800 bluetooth driver package under /linux/driver/bluetooth directory.
  2. Add the following code under linux/drivers/bluetooth/Kconfig:
    config BT_AICBTUSB
    tristate "AIC HCI USB driver"
    depends on USB
    help
    AIC Bluetooth HCI USB driver
  3. Add the following code to linux/driver/Bluetooth/Makefile:
    obj-$(CONFIG_BT_AICBTUSB) += aic_btusb.o
  4. Compile AIC HCI USB driver as a module.
    Figure 1. AIC HCI USB driver