Message ID | 20170410191307.4137-1-hdegoede@redhat.com (mailing list archive) |
---|---|
State | Not Applicable |
Delegated to: | Kalle Valo |
Headers | show |
Hi Hans, On Mon, 10 Apr 2017 21:13:07 +0200 Hans de Goede <hdegoede@redhat.com> wrote: > > As reported by Stephen Rothwell when merging staging-next, > drivers/staging/rtl8723bs/core/rtw_ieee80211.c does not compile due > to of_get_property not being declared. > > Explicitly include <linux/of.h> to fix this compile error. > > Cc: Stephen Rothwell <sfr@canb.auug.org.au> > Signed-off-by: Hans de Goede <hdegoede@redhat.com> > --- > drivers/staging/rtl8723bs/core/rtw_ieee80211.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/staging/rtl8723bs/core/rtw_ieee80211.c b/drivers/staging/rtl8723bs/core/rtw_ieee80211.c > index af44a8c..74f5ee0 100644 > --- a/drivers/staging/rtl8723bs/core/rtw_ieee80211.c > +++ b/drivers/staging/rtl8723bs/core/rtw_ieee80211.c > @@ -16,7 +16,7 @@ > > #include <drv_types.h> > #include <rtw_debug.h> > - > +#include <linux/of.h> > > u8 RTW_WPA_OUI_TYPE[] = { 0x00, 0x50, 0xf2, 1 }; > u16 RTW_WPA_VERSION = 1; > -- > 2.9.3 I will add this to linux-next today.
On Mon, Apr 10, 2017 at 09:13:07PM +0200, Hans de Goede wrote: > As reported by Stephen Rothwell when merging staging-next, > drivers/staging/rtl8723bs/core/rtw_ieee80211.c does not compile due > to of_get_property not being declared. > > Explicitly include <linux/of.h> to fix this compile error. > > Cc: Stephen Rothwell <sfr@canb.auug.org.au> You should use "Reported-by:" here in the future... thanks, greg k-h
diff --git a/drivers/staging/rtl8723bs/core/rtw_ieee80211.c b/drivers/staging/rtl8723bs/core/rtw_ieee80211.c index af44a8c..74f5ee0 100644 --- a/drivers/staging/rtl8723bs/core/rtw_ieee80211.c +++ b/drivers/staging/rtl8723bs/core/rtw_ieee80211.c @@ -16,7 +16,7 @@ #include <drv_types.h> #include <rtw_debug.h> - +#include <linux/of.h> u8 RTW_WPA_OUI_TYPE[] = { 0x00, 0x50, 0xf2, 1 }; u16 RTW_WPA_VERSION = 1;
As reported by Stephen Rothwell when merging staging-next, drivers/staging/rtl8723bs/core/rtw_ieee80211.c does not compile due to of_get_property not being declared. Explicitly include <linux/of.h> to fix this compile error. Cc: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Hans de Goede <hdegoede@redhat.com> --- drivers/staging/rtl8723bs/core/rtw_ieee80211.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)