Commit 8fea7d09 authored by Ben Chan's avatar Ben Chan Committed by Greg Kroah-Hartman

staging: gdm72xx: use bool instead of custom-defined BOOLEAN

Signed-off-by: default avatarBen Chan <benchan@chromium.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 0fbce84c
......@@ -100,7 +100,7 @@ void gdm_qos_init(void *nic_ptr)
for (i = 0; i < QOS_MAX; i++) {
INIT_LIST_HEAD(&qcb->qos_list[i]);
qcb->csr[i].qos_buf_count = 0;
qcb->csr[i].enabled = 0;
qcb->csr[i].enabled = false;
}
qcb->qos_list_cnt = 0;
......@@ -127,7 +127,7 @@ void gdm_qos_release_list(void *nic_ptr)
for (i = 0; i < QOS_MAX; i++) {
qcb->csr[i].qos_buf_count = 0;
qcb->csr[i].enabled = 0;
qcb->csr[i].enabled = false;
}
qcb->qos_list_cnt = 0;
......@@ -316,8 +316,8 @@ static u32 get_csr(struct qos_cb_s *qcb, u32 SFID, int mode)
if (mode) {
for (i = 0; i < QOS_MAX; i++) {
if (qcb->csr[i].enabled == 0) {
qcb->csr[i].enabled = 1;
if (!qcb->csr[i].enabled) {
qcb->csr[i].enabled = true;
qcb->qos_list_cnt++;
return i;
}
......@@ -428,7 +428,7 @@ void gdm_recv_qos_hci_packet(void *nic_ptr, u8 *buf, int size)
INIT_LIST_HEAD(&free_list);
spin_lock_irqsave(&qcb->qos_lock, flags);
qcb->csr[index].enabled = 0;
qcb->csr[index].enabled = false;
qcb->qos_list_cnt--;
qcb->qos_limit_size = 254/qcb->qos_list_cnt;
......
......@@ -18,8 +18,6 @@
#include <linux/usb.h>
#include <linux/list.h>
#define BOOLEAN u8
#define QOS_MAX 16
#define IPTYPEOFSERVICE 0x8000
#define PROTOCOL 0x4000
......@@ -34,7 +32,7 @@
#define IEEE802_1QVLANID 0x10
struct gdm_wimax_csr_s {
BOOLEAN enabled;
bool enabled;
u32 SFID;
u8 qos_buf_count;
u16 classifier_rule_en;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment