diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-06-06 00:09:10 -0400 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2011-06-06 15:25:56 +0300 |
commit | 3e4c601e5c00f3bb5844402954d9b9dcf9387da2 (patch) | |
tree | 316c949660206db72216da853a7c9803af8d80e1 /flash_unlock.c | |
parent | 21fd84ba4d580b47e15e8e5e13e1e9cb47481e44 (diff) |
flash_lock/flash_unlock/flash_info: clean up style
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'flash_unlock.c')
-rw-r--r-- | flash_unlock.c | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/flash_unlock.c b/flash_unlock.c index 3d29a92..26721a5 100644 --- a/flash_unlock.c +++ b/flash_unlock.c @@ -28,26 +28,21 @@ int main(int argc, char *argv[]) /* * Parse command line options */ - if(argc < 2) - { + if (argc < 2) { fprintf(stderr, "USAGE: %s <mtd device> <offset in hex> <block count in decimal number>\n", PROGRAM_NAME); exit(1); - } - else if(strncmp(argv[1], "/dev/mtd", 8) != 0) - { + } else if (strncmp(argv[1], "/dev/mtd", 8) != 0) { fprintf(stderr, "'%s' is not a MTD device. Must specify mtd device: /dev/mtd?\n", argv[1]); exit(1); } fd = open(argv[1], O_RDWR); - if(fd < 0) - { + if (fd < 0) { fprintf(stderr, "Could not open mtd device: %s\n", argv[1]); exit(1); } - if(ioctl(fd, MEMGETINFO, &mtdInfo)) - { + if (ioctl(fd, MEMGETINFO, &mtdInfo)) { fprintf(stderr, "Could not get MTD device info from %s\n", argv[1]); close(fd); exit(1); @@ -65,8 +60,7 @@ int main(int argc, char *argv[]) mtdLockInfo.length = mtdInfo.size - mtdInfo.erasesize; } - if(ioctl(fd, MEMUNLOCK, &mtdLockInfo)) - { + if (ioctl(fd, MEMUNLOCK, &mtdLockInfo)) { fprintf(stderr, "Could not unlock MTD device: %s\n", argv[1]); close(fd); exit(1); |