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

Commit f8781a08 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab
Browse files

[media] saa7134: fix indent issues



As reported by smatch:
	drivers/media/pci/saa7134/saa7134-cards.c:7197 saa7134_xc2028_callback() warn: inconsistent indenting
	drivers/media/pci/saa7134/saa7134-cards.c:7846 saa7134_board_init2() warn: inconsistent indenting
	drivers/media/pci/saa7134/saa7134-cards.c:7913 saa7134_board_init2() warn: inconsistent indenting

While here, fix a few CodingStyle issues on the affected code

Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
Acked-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
parent 2f9e682d
Loading
Loading
Loading
Loading
+11 −8
Original line number Diff line number Diff line
@@ -7842,7 +7842,8 @@ int saa7134_board_init2(struct saa7134_dev *dev)
				break;
			case 0x001d:
				dev->tuner_type = TUNER_PHILIPS_FMD1216ME_MK3;
					printk(KERN_INFO "%s Board has DVB-T\n", dev->name);
				printk(KERN_INFO "%s Board has DVB-T\n",
				       dev->name);
				break;
			default:
				printk(KERN_ERR "%s Can't determine tuner type %x from EEPROM\n", dev->name, tuner_t);
@@ -7904,12 +7905,14 @@ int saa7134_board_init2(struct saa7134_dev *dev)
	/* The card below is detected as card=53, but is different */
	       if (dev->autodetected && (dev->eedata[0x27] == 0x03)) {
			dev->board = SAA7134_BOARD_ASUSTeK_P7131_ANALOG;
		       printk(KERN_INFO "%s: P7131 analog only, using "
						       "entry of %s\n",
			printk(KERN_INFO
			       "%s: P7131 analog only, using entry of %s\n",
			dev->name, saa7134_boards[dev->board].name);

			/* IR init has already happened for other cards, so
			 * we have to catch up. */
			/*
			 * IR init has already happened for other cards, so
			 * we have to catch up.
			 */
			dev->has_remote = SAA7134_REMOTE_GPIO;
			saa7134_input_init1(dev);
	       }