These changes are the raw update to linux-4.4.6-rt14. Kernel sources
[kvmfornfv.git] / kernel / sound / pci / echoaudio / echoaudio_dsp.c
index 1a9427a..15aae2f 100644 (file)
@@ -103,8 +103,8 @@ static int write_dsp(struct echoaudio *chip, u32 data)
                cond_resched();
        }
 
-       chip->bad_board = TRUE;         /* Set TRUE until DSP re-loaded */
-       dev_dbg(chip->card->dev, "write_dsp: Set bad_board to TRUE\n");
+       chip->bad_board = true;         /* Set true until DSP re-loaded */
+       dev_dbg(chip->card->dev, "write_dsp: Set bad_board to true\n");
        return -EIO;
 }
 
@@ -126,8 +126,8 @@ static int read_dsp(struct echoaudio *chip, u32 *data)
                cond_resched();
        }
 
-       chip->bad_board = TRUE;         /* Set TRUE until DSP re-loaded */
-       dev_err(chip->card->dev, "read_dsp: Set bad_board to TRUE\n");
+       chip->bad_board = true;         /* Set true until DSP re-loaded */
+       dev_err(chip->card->dev, "read_dsp: Set bad_board to true\n");
        return -EIO;
 }
 
@@ -166,7 +166,7 @@ static int read_sn(struct echoaudio *chip)
 /* This card has no ASIC, just return ok */
 static inline int check_asic_status(struct echoaudio *chip)
 {
-       chip->asic_loaded = TRUE;
+       chip->asic_loaded = true;
        return 0;
 }
 
@@ -341,11 +341,11 @@ static int load_dsp(struct echoaudio *chip, u16 *code)
                dev_warn(chip->card->dev, "DSP is already loaded!\n");
                return 0;
        }
-       chip->bad_board = TRUE;         /* Set TRUE until DSP loaded */
+       chip->bad_board = true;         /* Set true until DSP loaded */
        chip->dsp_code = NULL;          /* Current DSP code not loaded */
-       chip->asic_loaded = FALSE;      /* Loading the DSP code will reset the ASIC */
+       chip->asic_loaded = false;      /* Loading the DSP code will reset the ASIC */
 
-       dev_dbg(chip->card->dev, "load_dsp: Set bad_board to TRUE\n");
+       dev_dbg(chip->card->dev, "load_dsp: Set bad_board to true\n");
 
        /* If this board requires a resident loader, install it. */
 #ifdef DSP_56361
@@ -471,7 +471,7 @@ static int load_dsp(struct echoaudio *chip, u16 *code)
                        }
 
                        chip->dsp_code = code;          /* Show which DSP code loaded */
-                       chip->bad_board = FALSE;        /* DSP OK */
+                       chip->bad_board = false;        /* DSP OK */
                        return 0;
                }
                udelay(100);
@@ -951,10 +951,10 @@ static int rest_in_peace(struct echoaudio *chip)
        /* Stops all active pipes (just to be sure) */
        stop_transport(chip, chip->active_mask);
 
-       set_meters_on(chip, FALSE);
+       set_meters_on(chip, false);
 
 #ifdef ECHOCARD_HAS_MIDI
-       enable_midi_input(chip, FALSE);
+       enable_midi_input(chip, false);
 #endif
 
        /* Go to sleep */
@@ -981,9 +981,9 @@ static int init_dsp_comm_page(struct echoaudio *chip)
 
        /* Init all the basic stuff */
        chip->card_name = ECHOCARD_NAME;
-       chip->bad_board = TRUE; /* Set TRUE until DSP loaded */
+       chip->bad_board = true; /* Set true until DSP loaded */
        chip->dsp_code = NULL;  /* Current DSP code not loaded */
-       chip->asic_loaded = FALSE;
+       chip->asic_loaded = false;
        memset(chip->comm_page, 0, sizeof(struct comm_page));
 
        /* Init the comm page */