From: Yinghai Lu Date: Wed, 17 Nov 2010 20:10:40 +0000 (-0800) Subject: PCI: Skip id checking if no id is passed X-Git-Tag: v2.6.38-rc1~55^2~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ee8abf783dd36f65440fd782ad16f9768631d998;p=platform%2Fkernel%2Flinux-exynos.git PCI: Skip id checking if no id is passed Will get warning when pci stub driver is built-in kenel like: pci-stub: invalid id string "" So stop early if no id is passed. Signed-off-by: Yinghai Lu Signed-off-by: Jesse Barnes --- diff --git a/drivers/pci/pci-stub.c b/drivers/pci/pci-stub.c index f7b68ca..4c0336b 100644 --- a/drivers/pci/pci-stub.c +++ b/drivers/pci/pci-stub.c @@ -47,6 +47,10 @@ static int __init pci_stub_init(void) if (rc) return rc; + /* no ids passed actually */ + if (ids[0] == '\0') + return 0; + /* add ids specified in the module parameter */ p = ids; while ((id = strsep(&p, ","))) {