From 4f0bb3147079b6a8b49ccf1b3b3b6fbf13e64f11 Mon Sep 17 00:00:00 2001 From: Imre Deak Date: Tue, 3 Jun 2014 16:03:50 +0300 Subject: [PATCH] quick_dump: make autodetect the default option MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Imre Deak Reviewed-by: Ville Syrjälä Very-much-wanted-by: Daniel Vetter --- tools/quick_dump/quick_dump.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tools/quick_dump/quick_dump.py b/tools/quick_dump/quick_dump.py index 523f675..2eb7724 100755 --- a/tools/quick_dump/quick_dump.py +++ b/tools/quick_dump/quick_dump.py @@ -75,9 +75,6 @@ if __name__ == "__main__": parser.add_argument('-b', '--baseless', action='store_true', default=False, help='baseless mode, ignore files starting with base_') - parser.add_argument('-a', '--autodetect', - action='store_true', default=False, - help='autodetect chipset') parser.add_argument('-f', '--file', type=argparse.FileType('r'), default=None) parser.add_argument('profile', nargs='?', @@ -101,7 +98,7 @@ if __name__ == "__main__": if args.baseless == False: walk_base_files() - if args.autodetect: + if args.profile == None: args.profile = autodetect_chipset() if args.profile == None: -- 2.7.4