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

Commit 16bd2c48 authored by Janusz Lisiecki's avatar Janusz Lisiecki Committed by Greg Kroah-Hartman
Browse files

staging: ks7010: avoid CamelCase: receiveDTIMs



Replace CamelCase variable name with underscores to comply
with the standard kernel coding style.

Signed-off-by: default avatarJanusz Lisiecki <janusz.lisiecki@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 26d701a8
Loading
Loading
Loading
Loading
+13 −13
Original line number Diff line number Diff line
@@ -1660,12 +1660,12 @@ void hostif_phy_information_request(struct ks_wlan_private *priv)
static
void hostif_power_mgmt_request(struct ks_wlan_private *priv,
				unsigned long mode, unsigned long wake_up,
			       unsigned long receiveDTIMs)
				unsigned long receive_dtims)
{
	struct hostif_power_mgmt_request_t *pp;

	DPRINTK(3, "mode=%lu wake_up=%lu receiveDTIMs=%lu\n", mode, wake_up,
		receiveDTIMs);
	DPRINTK(3, "mode=%lu wake_up=%lu receive_dtims=%lu\n", mode, wake_up,
		receive_dtims);

	pp = hostif_generic_request(sizeof(*pp), HIF_POWER_MGMT_REQ);
	if (!pp)
@@ -1673,7 +1673,7 @@ void hostif_power_mgmt_request(struct ks_wlan_private *priv,

	pp->mode = cpu_to_le32((uint32_t)mode);
	pp->wake_up = cpu_to_le32((uint32_t)wake_up);
	pp->receiveDTIMs = cpu_to_le32((uint32_t)receiveDTIMs);
	pp->receive_dtims = cpu_to_le32((uint32_t)receive_dtims);

	/* send to device request */
	ps_confirm_wait_inc(priv);
@@ -2217,44 +2217,44 @@ void hostif_sme_multicast_set(struct ks_wlan_private *priv)
static
void hostif_sme_power_mgmt_set(struct ks_wlan_private *priv)
{
	unsigned long mode, wake_up, receiveDTIMs;
	unsigned long mode, wake_up, receive_dtims;

	DPRINTK(3, "\n");
	switch (priv->reg.power_mgmt) {
	case POWER_MGMT_ACTIVE:
		mode = POWER_ACTIVE;
		wake_up = 0;
		receiveDTIMs = 0;
		receive_dtims = 0;
		break;
	case POWER_MGMT_SAVE1:
		if (priv->reg.operation_mode == MODE_INFRASTRUCTURE) {
			mode = POWER_SAVE;
			wake_up = 0;
			receiveDTIMs = 0;
			receive_dtims = 0;
		} else {
			mode = POWER_ACTIVE;
			wake_up = 0;
			receiveDTIMs = 0;
			receive_dtims = 0;
		}
		break;
	case POWER_MGMT_SAVE2:
		if (priv->reg.operation_mode == MODE_INFRASTRUCTURE) {
			mode = POWER_SAVE;
			wake_up = 0;
			receiveDTIMs = 1;
			receive_dtims = 1;
		} else {
			mode = POWER_ACTIVE;
			wake_up = 0;
			receiveDTIMs = 0;
			receive_dtims = 0;
		}
		break;
	default:
		mode = POWER_ACTIVE;
		wake_up = 0;
		receiveDTIMs = 0;
		receive_dtims = 0;
		break;
	}
	hostif_power_mgmt_request(priv, mode, wake_up, receiveDTIMs);
	hostif_power_mgmt_request(priv, mode, wake_up, receive_dtims);
}

static
+1 −1
Original line number Diff line number Diff line
@@ -188,7 +188,7 @@ struct hostif_power_mgmt_request_t {
	__le32 wake_up;
#define SLEEP_FALSE 0
#define SLEEP_TRUE  1	/* not used */
	__le32 receiveDTIMs;
	__le32 receive_dtims;
#define DTIM_FALSE 0
#define DTIM_TRUE  1
} __packed;