soc/software/libbase: fix get_ident
authorFlorent Kermarrec <florent@enjoy-digital.fr>
Wed, 28 Jun 2017 16:10:56 +0000 (18:10 +0200)
committerFlorent Kermarrec <florent@enjoy-digital.fr>
Wed, 28 Jun 2017 16:10:56 +0000 (18:10 +0200)
litex/soc/software/libbase/id.c

index 093b99399b59532c8a55d58ea6ce76464dbc14b4..6d1c334e1dbf3830f40374500ef202591914b8fe 100644 (file)
@@ -12,7 +12,7 @@ void get_ident(char *ident)
     
     len = MMPTR(CSR_IDENTIFIER_MEM_BASE);
     for(i=0;i<len;i++)
-        ident[i] = MMPTR(CSR_IDENTIFIER_MEM_BASE + 4 + i*4);
+        ident[i] = MMPTR(CSR_IDENTIFIER_MEM_BASE + 4*i);
     ident[i] = 0;
 #else
     ident[0] = 0;