Mauro Carvalho Chehab
60d3603ba0
[media] drx-j: Remove typedefs in drxj.c
...
Remove three typedefs from drxj.c, using the following script:
use File::Find;
use strict;
my $dir = shift or die "need a dir";
my $type = shift or die "need type";
my $var = shift or die "need var";
sub handle_file {
my $file = shift;
my $out;
open IN, $file or die "can't open $file";
$out .= $_ while (<IN>);
close IN;
$out =~ s/\btypedef\s+($type)\s+\{([\d\D]+?)\s*\}\s+\b($var)[^\;]+\;/$type $var \{\2\};/;
# This replaces the typedef declaration for a simple struct declaration - style 1
# This replaces the typedef declaration for a simple struct declaration - style 2
# Replace struct occurrences
$out =~ s,\b($var)_t\s+,$type \1 ,g;
$out =~ s,\bp_*($var)_t\s+,$type \1 *,g;
$out =~ s,\b($var)_t\b,$type \1,g;
$out =~ s,\bp_*($var)_t\b,$type \1 *,g;
open OUT, ">$file" or die "can't open $file";
print OUT $out;
close OUT;
}
sub parse_dir {
my $file = $File::Find::name;
return if (!($file =~ /.[ch]$/));
handle_file $file;
}
find({wanted => \&parse_dir, no_chdir => 1}, $dir);
Acked-by: Devin Heitmueller <dheitmueller@kernellabs.com>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
2014-03-04 14:29:02 -03:00
..
2014-03-04 14:29:02 -03:00
2013-12-18 07:18:31 -02:00
2013-03-23 09:03:59 -03:00
2012-09-23 20:10:27 -03:00
2013-11-08 09:45:39 -02:00
2013-03-23 09:03:59 -03:00
2013-03-21 19:04:25 -03:00
2013-12-04 15:24:42 -02:00
2013-03-23 09:03:59 -03:00
2012-08-13 23:13:41 -03:00
2012-08-13 23:13:41 -03:00
2013-03-23 09:03:59 -03:00
2012-08-13 23:13:41 -03:00
2013-06-17 08:48:39 -03:00
2012-08-13 23:13:41 -03:00
2013-03-25 15:09:59 -03:00
2013-03-26 08:37:48 -03:00
2012-08-13 23:13:41 -03:00
2013-11-08 09:45:38 -02:00
2013-02-06 09:24:09 -02:00
2012-08-13 23:13:41 -03:00
2012-08-13 23:13:41 -03:00
2012-08-13 23:13:41 -03:00
2012-10-28 07:38:44 -02:00
2013-02-06 09:24:09 -02:00
2012-08-13 23:13:41 -03:00
2013-03-23 09:03:59 -03:00
2013-10-17 05:51:57 -03:00
2013-02-06 09:24:09 -02:00
2012-08-13 23:13:41 -03:00
2013-03-23 09:03:59 -03:00
2012-12-27 19:03:15 -02:00
2013-03-23 09:03:59 -03:00
2013-12-09 09:59:42 -02:00
2013-10-03 07:40:12 -03:00
2013-10-17 05:51:57 -03:00
2013-03-23 09:03:59 -03:00
2013-11-29 12:27:54 -02:00
2013-11-08 09:45:39 -02:00
2012-09-27 14:33:58 -03:00
2013-04-15 08:32:41 -03:00
2012-09-27 14:33:58 -03:00
2013-03-23 09:03:59 -03:00
2012-08-13 23:13:41 -03:00
2013-02-06 09:24:09 -02:00
2013-04-25 16:06:55 -03:00
2013-02-06 09:24:09 -02:00
2013-02-06 09:24:09 -02:00
2012-08-13 23:13:41 -03:00
2012-08-13 23:13:41 -03:00
2012-08-13 23:13:41 -03:00
2013-03-23 09:03:59 -03:00
2012-08-13 23:13:41 -03:00
2013-03-23 09:03:59 -03:00
2013-04-22 17:13:43 -03:00
2013-04-22 17:13:43 -03:00
2014-01-13 16:28:13 -02:00
2013-04-22 16:58:16 -03:00
2013-10-02 06:48:14 -03:00
2013-02-06 09:24:09 -02:00
2012-08-13 23:13:41 -03:00
2013-04-22 16:58:16 -03:00
2012-08-13 23:13:41 -03:00
2012-08-13 23:13:41 -03:00
2013-10-17 05:54:31 -03:00
2012-08-13 23:13:41 -03:00
2013-03-23 09:03:59 -03:00
2014-01-14 14:40:10 -02:00
2013-06-08 22:09:41 -03:00
2013-03-21 10:26:50 -03:00
2014-01-14 14:40:10 -02:00
2014-02-28 15:21:02 -03:00
2013-03-23 09:03:59 -03:00
2012-10-06 11:07:34 -03:00
2013-03-23 09:03:59 -03:00
2012-08-13 23:13:41 -03:00
2013-02-06 09:24:09 -02:00
2012-09-23 20:11:26 -03:00
2013-03-23 09:03:59 -03:00
2012-08-13 23:13:41 -03:00
2012-09-23 20:11:55 -03:00
2012-09-23 20:11:55 -03:00
2013-03-23 09:03:59 -03:00
2012-10-07 09:15:18 -03:00
2013-02-06 09:24:09 -02:00
2013-04-08 06:56:47 -03:00
2013-04-08 06:56:47 -03:00
2012-08-13 23:13:41 -03:00
2013-02-06 09:24:09 -02:00
2012-08-13 23:13:41 -03:00
2013-11-08 09:45:38 -02:00
2013-02-06 09:24:09 -02:00
2012-12-21 14:27:02 -02:00
2013-03-23 09:03:59 -03:00
2014-03-04 14:20:23 -03:00
2012-10-28 07:38:44 -02:00
2013-02-06 09:24:09 -02:00
2012-10-06 11:11:42 -03:00
2013-04-22 10:04:20 -03:00
2012-08-13 23:13:41 -03:00
2012-08-13 23:13:41 -03:00
2013-02-06 09:24:09 -02:00
2012-08-13 23:13:41 -03:00
2013-03-23 09:03:59 -03:00
2012-08-13 23:13:41 -03:00
2013-03-23 09:03:59 -03:00
2012-08-13 23:13:41 -03:00
2012-08-13 23:13:41 -03:00
2013-03-23 09:03:59 -03:00
2013-03-23 09:03:59 -03:00
2012-10-07 09:15:18 -03:00
2013-03-23 09:03:59 -03:00
2012-10-07 09:15:18 -03:00
2013-03-23 09:03:59 -03:00
2013-12-19 09:24:44 -02:00
2013-12-19 09:24:44 -02:00
2013-12-19 09:24:44 -02:00
2014-02-28 15:19:44 -03:00
2014-01-07 09:35:58 -02:00
2014-03-04 14:20:23 -03:00
2012-08-13 23:13:41 -03:00
2012-08-13 23:13:41 -03:00
2013-02-06 09:24:09 -02:00
2014-02-07 08:03:07 -02:00
2014-02-07 08:03:07 -02:00
2012-08-13 23:13:41 -03:00
2013-11-08 09:45:38 -02:00
2013-02-06 09:24:09 -02:00
2012-08-13 23:13:41 -03:00
2012-08-13 23:13:41 -03:00
2013-02-06 09:24:09 -02:00
2014-01-13 10:29:47 -02:00
2013-02-06 09:24:09 -02:00
2012-08-13 23:13:41 -03:00
2012-08-13 23:13:41 -03:00
2013-02-06 09:24:09 -02:00
2012-08-13 23:13:41 -03:00
2013-02-06 09:24:09 -02:00
2012-12-21 14:30:19 -02:00
2013-02-06 09:24:09 -02:00
2012-09-23 20:12:11 -03:00
2013-12-09 14:50:51 -02:00
2013-03-23 09:03:59 -03:00
2013-04-16 21:25:52 -03:00
2013-11-08 09:45:39 -02:00
2013-10-31 06:09:23 -02:00
2012-08-13 23:13:41 -03:00
2013-03-23 09:03:59 -03:00
2012-08-13 23:13:41 -03:00
2013-03-23 09:03:59 -03:00
2012-08-13 23:13:41 -03:00
2013-11-08 09:45:38 -02:00
2013-02-06 09:24:09 -02:00
2012-10-06 11:13:07 -03:00
2013-03-23 09:03:59 -03:00
2014-02-07 08:03:07 -02:00
2014-02-07 08:03:07 -02:00
2012-10-07 09:15:18 -03:00
2013-03-23 09:03:59 -03:00
2012-10-07 09:15:18 -03:00
2013-02-06 09:24:09 -02:00
2012-10-06 08:22:22 -03:00
2013-02-06 09:24:09 -02:00
2013-06-08 20:15:09 -03:00
2012-08-13 23:13:41 -03:00
2013-11-08 09:45:39 -02:00
2013-06-08 20:13:29 -03:00
2012-08-13 23:13:41 -03:00
2012-08-13 23:13:41 -03:00
2012-08-13 23:13:41 -03:00
2013-03-23 09:03:59 -03:00
2012-08-13 23:13:41 -03:00
2012-08-13 23:13:41 -03:00
2014-02-28 15:20:33 -03:00
2013-02-06 09:24:09 -02:00
2012-08-13 23:13:41 -03:00
2012-08-13 23:13:41 -03:00
2013-11-08 09:45:40 -02:00
2013-02-06 09:24:09 -02:00
2012-08-13 23:13:41 -03:00
2013-03-23 09:03:59 -03:00
2012-08-13 23:13:41 -03:00
2013-02-06 09:24:09 -02:00
2012-12-27 19:03:15 -02:00
2013-02-06 09:24:09 -02:00
2012-08-13 23:13:41 -03:00
2012-08-13 23:13:41 -03:00
2013-11-08 09:45:40 -02:00
2013-03-23 09:03:59 -03:00
2013-02-08 18:05:48 -02:00
2012-08-13 23:13:41 -03:00
2012-08-13 23:13:41 -03:00
2013-01-06 11:08:44 -02:00
2014-02-28 15:20:15 -03:00
2013-03-23 09:03:59 -03:00
2013-11-08 09:45:38 -02:00
2013-03-23 09:03:59 -03:00
2012-08-13 23:13:41 -03:00
2012-08-13 23:13:41 -03:00
2013-11-08 09:45:38 -02:00
2013-02-06 09:24:09 -02:00
2012-10-06 11:14:04 -03:00
2013-02-06 09:24:09 -02:00
2012-08-13 23:13:41 -03:00
2013-02-06 09:24:09 -02:00
2013-02-06 09:24:09 -02:00
2012-10-01 07:17:01 -03:00
2013-02-06 09:24:09 -02:00
2013-10-17 05:51:57 -03:00
2013-02-06 09:24:09 -02:00
2012-12-21 18:25:11 -02:00
2012-09-18 12:46:27 -03:00
2013-02-06 09:24:09 -02:00
2012-08-13 23:13:41 -03:00
2012-08-13 23:13:41 -03:00
2012-08-13 23:13:41 -03:00
2013-03-23 09:03:59 -03:00
2012-09-23 20:07:45 -03:00
2014-02-24 10:37:16 -03:00
2014-02-24 10:37:16 -03:00
2012-08-13 23:13:41 -03:00
2013-02-06 09:24:09 -02:00
2012-08-13 23:13:41 -03:00
2013-11-08 09:45:38 -02:00
2013-03-23 09:03:59 -03:00
2012-08-13 23:13:41 -03:00
2013-10-02 06:48:15 -03:00
2013-10-02 06:48:14 -03:00
2012-08-13 23:13:41 -03:00
2013-02-06 09:24:09 -02:00
2012-08-13 23:13:41 -03:00
2013-02-06 09:24:09 -02:00
2012-08-13 23:13:41 -03:00
2013-02-06 09:24:09 -02:00
2012-08-13 23:13:41 -03:00
2012-08-13 23:13:41 -03:00
2013-03-23 09:03:59 -03:00
2013-11-08 09:45:38 -02:00
2013-03-23 09:03:59 -03:00
2012-08-13 23:13:41 -03:00
2012-08-13 23:13:41 -03:00
2013-02-06 09:24:09 -02:00