1. 22 11月, 2016 24 次提交
  2. 19 11月, 2016 1 次提交
  3. 16 11月, 2016 1 次提交
  4. 21 10月, 2016 1 次提交
    • M
      [media] ti-vpe: don't break long lines · 637d5ac5
      Mauro Carvalho Chehab 提交于
      Due to the 80-cols restrictions, and latter due to checkpatch
      warnings, several strings were broken into multiple lines. This
      is not considered a good practice anymore, as it makes harder
      to grep for strings at the source code.
      
      As we're right now fixing other drivers due to KERN_CONT, we need
      to be able to identify what printk strings don't end with a "\n".
      It is a way easier to detect those if we don't break long lines.
      
      So, join those continuation lines.
      
      The patch was generated via the script below, and manually
      adjusted if needed.
      
      </script>
      use Text::Tabs;
      while (<>) {
      	if ($next ne "") {
      		$c=$_;
      		if ($c =~ /^\s+\"(.*)/) {
      			$c2=$1;
      			$next =~ s/\"\n$//;
      			$n = expand($next);
      			$funpos = index($n, '(');
      			$pos = index($c2, '",');
      			if ($funpos && $pos > 0) {
      				$s1 = substr $c2, 0, $pos + 2;
      				$s2 = ' ' x ($funpos + 1) . substr $c2, $pos + 2;
      				$s2 =~ s/^\s+//;
      
      				$s2 = ' ' x ($funpos + 1) . $s2 if ($s2 ne "");
      
      				print unexpand("$next$s1\n");
      				print unexpand("$s2\n") if ($s2 ne "");
      			} else {
      				print "$next$c2\n";
      			}
      			$next="";
      			next;
      		} else {
      			print $next;
      		}
      		$next="";
      	} else {
      		if (m/\"$/) {
      			if (!m/\\n\"$/) {
      				$next=$_;
      				next;
      			}
      		}
      	}
      	print $_;
      }
      </script>
      Acked-by: NBenoit Parrot <bparrot@ti.com>
      Signed-off-by: NMauro Carvalho Chehab <mchehab@s-opensource.com>
      637d5ac5
  5. 20 9月, 2016 1 次提交
  6. 09 7月, 2016 2 次提交
  7. 23 2月, 2016 2 次提交
  8. 19 2月, 2016 1 次提交
    • B
      [media] media: ti-vpe: cal: Fix syntax check warnings · 96621112
      Benoit Parrot 提交于
      Fix the following sparse warnings:
      
      ti-vpe/cal.c:387:26: warning: incorrect type in return expression (different address spaces)
      ti-vpe/cal.c:459:26: warning: incorrect type in return expression (different address spaces)
      ti-vpe/cal.c:503:27: warning: incorrect type in argument 6 (different address spaces)
      ti-vpe/cal.c:509:47: warning: incorrect type in argument 6 (different address spaces)
      ti-vpe/cal.c:518:47: warning: incorrect type in argument 6 (different address spaces)
      ti-vpe/cal.c:526:31: warning: incorrect type in argument 6 (different address spaces)
      ti-vpe/cal.c:1807:24: warning: Using plain integer as NULL pointer
      ti-vpe/cal.c:1844:16: warning: Using plain integer as NULL pointer
      Signed-off-by: NBenoit Parrot <bparrot@ti.com>
      Signed-off-by: NHans Verkuil <hans.verkuil@cisco.com>
      Signed-off-by: NMauro Carvalho Chehab <mchehab@osg.samsung.com>
      96621112
  9. 01 2月, 2016 1 次提交
  10. 18 12月, 2015 2 次提交
  11. 21 10月, 2015 1 次提交
  12. 01 10月, 2015 2 次提交
  13. 02 2月, 2015 1 次提交