#include <linux/interrupt.h>
 #include <linux/module.h>
 #include <linux/bcma/bcma.h>
+#include <linux/string_choices.h>
 #include <net/mac80211.h>
 #include <defs.h>
 #include "phy/phy_int.h"
                                                   conf->listen_interval);
        }
        if (changed & IEEE80211_CONF_CHANGE_MONITOR)
-               brcms_dbg_info(core, "%s: change monitor mode: %s\n",
-                              __func__, conf->flags & IEEE80211_CONF_MONITOR ?
-                              "true" : "false");
+               brcms_dbg_info(core, "%s: change monitor mode: %s\n", __func__,
+                              str_true_false(conf->flags &
+                                             IEEE80211_CONF_MONITOR));
        if (changed & IEEE80211_CONF_CHANGE_PS)
                brcms_err(core, "%s: change power-save mode: %s (implement)\n",
-                         __func__, conf->flags & IEEE80211_CONF_PS ?
-                         "true" : "false");
+                         __func__,
+                         str_true_false(conf->flags & IEEE80211_CONF_PS));
 
        if (changed & IEEE80211_CONF_CHANGE_POWER) {
                err = brcms_c_set_tx_power(wl->wlc, conf->power_level);
        if (changed & BSS_CHANGED_BEACON_ENABLED) {
                /* Beaconing should be enabled/disabled (beaconing modes) */
                brcms_err(core, "%s: Beacon enabled: %s\n", __func__,
-                         info->enable_beacon ? "true" : "false");
+                         str_true_false(info->enable_beacon));
                if (info->enable_beacon &&
                    hw->wiphy->flags & WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD) {
                        brcms_c_enable_probe_resp(wl->wlc, true);
        if (changed & BSS_CHANGED_IBSS) {
                /* IBSS join status changed */
                brcms_err(core, "%s: IBSS joined: %s (implement)\n",
-                         __func__, vif->cfg.ibss_joined ? "true" : "false");
+                         __func__, str_true_false(vif->cfg.ibss_joined));
        }
 
        if (changed & BSS_CHANGED_ARP_FILTER) {
                 * Note that it is only ever disabled for station mode.
                 */
                brcms_err(core, "%s: qos enabled: %s (implement)\n",
-                         __func__, info->qos ? "true" : "false");
+                         __func__, str_true_false(info->qos));
        }
        return;
 }
        struct brcms_info *wl = hw->priv;
        int ret;
 
-       no_printk("%s: drop = %s\n", __func__, drop ? "true" : "false");
+       no_printk("%s: drop = %s\n", __func__, str_true_false(drop));
 
        ret = wait_event_timeout(wl->tx_flush_wq,
                                 brcms_tx_flush_completed(wl),