Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

mmc: mmci: Fix compiler error when CONFIG_OF is not set

error: implicit declaration of function 'mmci_dt_populate_generic_pdata'

This is due to the '#if CONFIG_OF' guards placed around
mmci_dt_populate_generic_pdata(), but not around the call to it. We
repair this by inserting a stub which elegantly returns when CONFIG_OF
is not set.

Reported-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Signed-off-by: Chris Ball <cjb@laptop.org>

authored by

Lee Jones and committed by
Chris Ball
c0a120a4 9a597016

+6
+6
drivers/mmc/host/mmci.c
··· 1241 1241 pr_warn("%s: Unsupported bus width\n", np->full_name); 1242 1242 } 1243 1243 } 1244 + #else 1245 + static void mmci_dt_populate_generic_pdata(struct device_node *np, 1246 + struct mmci_platform_data *pdata) 1247 + { 1248 + return; 1249 + } 1244 1250 #endif 1245 1251 1246 1252 static int __devinit mmci_probe(struct amba_device *dev,