devmem2: remove comment of word write from fsl patch
authorChris Larson <chris_larson@mentor.com>
Wed, 12 Jan 2011 16:14:53 +0000 (09:14 -0700)
committerChris Larson <chris_larson@mentor.com>
Wed, 12 Jan 2011 16:14:53 +0000 (09:14 -0700)
Signed-off-by: Chris Larson <chris_larson@mentor.com>
recipes/devmem2/devmem2.bb
recipes/devmem2/devmem2/devmem2-fixups-2.patch

index 4893687..4f92586 100644 (file)
@@ -1,6 +1,6 @@
 DESCRIPTION = "Simple program to read/write from/to any location in memory."
 LICENSE = "GPLv2"
-PR = "r4"
+PR = "r5"
 
 SRC_URI = "http://www.lartmaker.nl/lartware/port/devmem2.c \
            file://devmem2-fixups-2.patch"
index fe66605..05dde41 100644 (file)
 +          break;
 +      case 'w':
 +          virt_addr = fixup_addr(virt_addr, sizeof(unsigned long));
-+//        *((unsigned long *)virt_addr) = write_val;
++          *((unsigned long *)virt_addr) = write_val;
 +          read_result = *((unsigned long *)virt_addr);
 +          break;
        }