From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jingoo Han Date: Thu, 28 Nov 2013 03:13:09 +0000 Subject: [PATCH 01/28] video: arkfb: use DEFINE_PCI_DEVICE_TABLE macro Message-Id: <002901ceebe7$c3eec160$4bcc4420$%han@samsung.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: linux-fbdev@vger.kernel.org This macro is used to create a struct pci_device_id array. Signed-off-by: Jingoo Han --- drivers/video/arkfb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/video/arkfb.c b/drivers/video/arkfb.c index a6b29bd..cc9f8a2 100644 --- a/drivers/video/arkfb.c +++ b/drivers/video/arkfb.c @@ -1183,7 +1183,7 @@ fail: /* List of boards that we are trying to support */ -static struct pci_device_id ark_devices[] = { +static DEFINE_PCI_DEVICE_TABLE(ark_devices) = { {PCI_DEVICE(0xEDD8, 0xA099)}, {0, 0, 0, 0, 0, 0, 0} }; -- 1.7.10.4