|
@@ -337,6 +337,8 @@ static void __init sfi_handle_ipc_dev(struct sfi_device_table_entry *pentry,
|
|
|
pr_debug("IPC bus, name = %16.16s, irq = 0x%2x\n",
|
|
|
pentry->name, pentry->irq);
|
|
|
pdata = intel_mid_sfi_get_pdata(dev, pentry);
|
|
|
+ if (IS_ERR(pdata))
|
|
|
+ return;
|
|
|
|
|
|
pdev = platform_device_alloc(pentry->name, 0);
|
|
|
if (pdev == NULL) {
|
|
@@ -370,6 +372,8 @@ static void __init sfi_handle_spi_dev(struct sfi_device_table_entry *pentry,
|
|
|
spi_info.chip_select);
|
|
|
|
|
|
pdata = intel_mid_sfi_get_pdata(dev, &spi_info);
|
|
|
+ if (IS_ERR(pdata))
|
|
|
+ return;
|
|
|
|
|
|
spi_info.platform_data = pdata;
|
|
|
if (dev->delay)
|
|
@@ -395,6 +399,8 @@ static void __init sfi_handle_i2c_dev(struct sfi_device_table_entry *pentry,
|
|
|
i2c_info.addr);
|
|
|
pdata = intel_mid_sfi_get_pdata(dev, &i2c_info);
|
|
|
i2c_info.platform_data = pdata;
|
|
|
+ if (IS_ERR(pdata))
|
|
|
+ return;
|
|
|
|
|
|
if (dev->delay)
|
|
|
intel_scu_i2c_device_register(pentry->host_num, &i2c_info);
|