From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932118AbbIRRmz (ORCPT ); Fri, 18 Sep 2015 13:42:55 -0400 Received: from mail-pa0-f50.google.com ([209.85.220.50]:35916 "EHLO mail-pa0-f50.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754350AbbIRRm0 (ORCPT ); Fri, 18 Sep 2015 13:42:26 -0400 Message-ID: <55FC4D00.1070203@gmail.com> Date: Fri, 18 Sep 2015 10:42:24 -0700 From: Florian Fainelli User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.8.0 MIME-Version: 1.0 To: Luis de Bethencourt , linux-kernel@vger.kernel.org CC: netdev@vger.kernel.org Subject: Re: [PATCH 1/2] net: phy: mdio-bcm-unimac: Fix module autoload for OF platform driver References: <20150918161612.GA25797@goodgumbo.baconseed.org> In-Reply-To: <20150918161612.GA25797@goodgumbo.baconseed.org> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 18/09/15 09:16, Luis de Bethencourt wrote: > This platform driver has a OF device ID table but the OF module > alias information is not created so module autoloading won't work. > > Signed-off-by: Luis de Bethencourt Acked-by: Florian Fainelli > --- > drivers/net/phy/mdio-bcm-unimac.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/net/phy/mdio-bcm-unimac.c b/drivers/net/phy/mdio-bcm-unimac.c > index 6a52a7f..4bde5e7 100644 > --- a/drivers/net/phy/mdio-bcm-unimac.c > +++ b/drivers/net/phy/mdio-bcm-unimac.c > @@ -244,6 +244,7 @@ static const struct of_device_id unimac_mdio_ids[] = { > { .compatible = "brcm,unimac-mdio", }, > { /* sentinel */ }, > }; > +MODULE_DEVICE_TABLE(of, unimac_mdio_ids); > > static struct platform_driver unimac_mdio_driver = { > .driver = { > -- Florian