Return-Path: Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 8.1 \(1993\)) Subject: Re: [PATCH 3/6] btwilink: add minimal device tree support From: Marcel Holtmann In-Reply-To: <1420775239-24745-1-git-send-email-gigi.joseph@ti.com> Date: Thu, 8 Jan 2015 23:07:01 -0800 Cc: "Gustavo F. Padovan" , Johan Hedberg , Grant Likely , Rob Herring , BlueZ development , Linux Kernel Mailing List , devicetree@vger.kernel.org, Gigi Joseph , Eyal Reizer , bvijay Message-Id: References: <1420775239-24745-1-git-send-email-gigi.joseph@ti.com> To: Gigi Joseph Sender: linux-bluetooth-owner@vger.kernel.org List-ID: Hi Gigi, > Add minimal device tree support to the btwilink driver that is used > for binding bluetooth with the ti-st shared transport driver. > > Signed-off-by: Eyal Reizer > Signed-off-by: bvijay > Signed-off-by: Gigi Joseph > --- > drivers/bluetooth/btwilink.c | 11 +++++++++++ > 1 file changed, 11 insertions(+) > > diff --git a/drivers/bluetooth/btwilink.c b/drivers/bluetooth/btwilink.c > index 55c135b..95adec3 100644 > --- a/drivers/bluetooth/btwilink.c > +++ b/drivers/bluetooth/btwilink.c > @@ -30,6 +30,7 @@ > > #include > #include > +#include > > /* Bluetooth Driver Version */ > #define VERSION "1.0" > @@ -286,6 +287,14 @@ static int ti_st_send_frame(struct hci_dev *hdev, struct sk_buff *skb) > return 0; > } > > +static const struct of_device_id btwilink_of_match[] = { > +{ > + .compatible = "btwilink", > + }, > + {} > +}; this formatting is bogus. Please construct it similar to what other drivers are doing. static const struct .. = { { .compatible = ".." }, { } /* Terminating entry */ }; And add an extra empty line before MODULE_DEVICE_TABLE. > +MODULE_DEVICE_TABLE(of, btwilink_of_match); > + > static int bt_ti_probe(struct platform_device *pdev) > { > static struct ti_st *hst; > @@ -349,6 +358,8 @@ static struct platform_driver btwilink_driver = { > .remove = bt_ti_remove, > .driver = { > .name = "btwilink", > + .owner = THIS_MODULE, > + .of_match_table = of_match_ptr(btwilink_of_match), > }, > }; Regards Marcel