Commit 51d6bae7a8d7a359d79004c586be352cd924d75f

Authored by bellard
1 parent 13a2e80f

removed duplicated line


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2097 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 0 additions and 1 deletions
hw/pflash_cfi02.c
@@ -135,7 +135,6 @@ static uint32_t pflash_read (pflash_t *pfl, target_ulong offset, int width) @@ -135,7 +135,6 @@ static uint32_t pflash_read (pflash_t *pfl, target_ulong offset, int width)
135 #else 135 #else
136 ret = p[offset]; 136 ret = p[offset];
137 ret |= p[offset + 1] << 8; 137 ret |= p[offset + 1] << 8;
138 - ret |= p[offset + 1] << 8;  
139 ret |= p[offset + 2] << 16; 138 ret |= p[offset + 2] << 16;
140 ret |= p[offset + 3] << 24; 139 ret |= p[offset + 3] << 24;
141 #endif 140 #endif