Instead of using 0 or 1 for boolean, use the true/false
defines.
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
 
 static void __exit gemtek_exit(void)
 {
-       hardmute = 1;   /* Turn off PLL */
+       hardmute = true;        /* Turn off PLL */
 #ifdef CONFIG_PNP
        pnp_unregister_driver(&gemtek_driver.pnp_driver);
 #endif
 
                                io = isapnp_fmi_probe();
                                if (io < 0)
                                        continue;
-                               pnp_attached = 1;
+                               pnp_attached = true;
                        }
                        if (!request_region(io, 2, "radio-sf16fmi")) {
                                if (pnp_attached)
        mutex_init(&fmi->lock);
 
        /* mute card and set default frequency */
-       fmi->mute = 1;
+       fmi->mute = true;
        fmi->curfreq = RSF16_MINFREQ;
        fmi_set_freq(fmi);
 
 
 static int si470x_set_chan(struct si470x_device *radio, unsigned short chan)
 {
        int retval;
-       bool timed_out = 0;
+       bool timed_out = false;
 
        /* start tuning */
        radio->registers[CHANNEL] &= ~CHANNEL_CHAN;
 {
        int band, retval;
        unsigned int freq;
-       bool timed_out = 0;
+       bool timed_out = false;
 
        /* set band */
        if (seek->rangelow || seek->rangehigh) {