Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9f21a8bd authored by Linus Torvalds's avatar Linus Torvalds
Browse files
Pull staging driver fixes from Greg KH:
 "Here are three bugfixes for some staging driver issues that have been
  reported.  All have been in the linux-next tree for a while"

* tag 'staging-4.2-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging:
  staging: lustre: Include unaligned.h instead of access_ok.h
  staging: vt6655: vnt_bss_info_changed check conf->beacon_rate is not NULL
  staging: comedi: das1800: add missing break in switch
parents 83c2768b fb1de5a4
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -1266,6 +1266,7 @@ static const struct das1800_board *das1800_probe(struct comedi_device *dev)
		if (index == das1801hc || index == das1802hc)
			return board;
		index = das1801hc;
		break;
	default:
		dev_err(dev->class_dev,
			"Board model: probe returned 0x%x (unknown, please report)\n",
+1 −1
Original line number Diff line number Diff line
@@ -40,7 +40,7 @@

#define DEBUG_SUBSYSTEM D_OTHER

#include <linux/unaligned/access_ok.h>
#include <asm/unaligned.h>

#include "../include/obd_support.h"
#include "../include/lustre_debug.h"
+3 −2
Original line number Diff line number Diff line
@@ -1483,8 +1483,9 @@ static void vnt_bss_info_changed(struct ieee80211_hw *hw,
		}
	}

	if (changed & BSS_CHANGED_ASSOC && priv->op_mode != NL80211_IFTYPE_AP) {
		if (conf->assoc) {
	if (changed & (BSS_CHANGED_ASSOC | BSS_CHANGED_BEACON_INFO) &&
	    priv->op_mode != NL80211_IFTYPE_AP) {
		if (conf->assoc && conf->beacon_rate) {
			CARDbUpdateTSF(priv, conf->beacon_rate->hw_value,
				       conf->sync_tsf);