fix rtl8366s OF binding
Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 36323
This commit is contained in:
parent
687b3f04ce
commit
10f432ba9d
1 changed files with 2 additions and 2 deletions
|
@ -256,7 +256,7 @@ static int rtl8366s_setup(struct rtl8366_smi *smi)
|
|||
int err;
|
||||
|
||||
pdata = smi->parent->platform_data;
|
||||
if (pdata->num_initvals && pdata->initvals) {
|
||||
if (pdata && pdata->num_initvals && pdata->initvals) {
|
||||
unsigned i;
|
||||
|
||||
dev_info(smi->parent, "applying initvals\n");
|
||||
|
@ -1110,7 +1110,7 @@ static int rtl8366s_remove(struct platform_device *pdev)
|
|||
|
||||
#ifdef CONFIG_OF
|
||||
static const struct of_device_id rtl8366s_match[] = {
|
||||
{ .compatible = "rtl8366s" },
|
||||
{ .compatible = "realtek,rtl8366s" },
|
||||
{},
|
||||
};
|
||||
MODULE_DEVICE_TABLE(of, rtl8366s_match);
|
||||
|
|
Loading…
Reference in a new issue