From: Axel Lin Date: Wed, 3 Aug 2011 13:02:55 +0000 (+0200) Subject: block: swim3: fix unterminated of_device_id table X-Git-Tag: firefly_0821_release~3680^2~4613^2~9 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=f41c53a569c4cf0556893ec9cfcf697d069799e1;p=firefly-linux-kernel-4.4.55.git block: swim3: fix unterminated of_device_id table of_device_id structures need a NULL terminating entry, add it. Signed-off-by: Axel Lin Signed-off-by: Jens Axboe --- diff --git a/drivers/block/swim3.c b/drivers/block/swim3.c index 773bfa792777..ae3e167e17ad 100644 --- a/drivers/block/swim3.c +++ b/drivers/block/swim3.c @@ -1184,6 +1184,7 @@ static struct of_device_id swim3_match[] = { .compatible = "swim3" }, + { /* end of list */ } }; static struct macio_driver swim3_driver =