armv4_5_algorithm_t -> struct armv4_5_algorithm

Remove misleading typedef and redundant suffix from struct armv4_5_algorithm.
This commit is contained in:
Zachary T Welch
2009-11-13 08:41:07 -08:00
parent 056fcdb540
commit 15e8e45308
11 changed files with 15 additions and 15 deletions
+2 -2
View File
@@ -119,13 +119,13 @@ static inline bool is_arm(struct arm *arm)
return arm && arm->common_magic == ARMV4_5_COMMON_MAGIC;
}
typedef struct armv4_5_algorithm_s
struct armv4_5_algorithm
{
int common_magic;
enum armv4_5_mode core_mode;
enum armv4_5_state core_state;
} armv4_5_algorithm_t;
};
typedef struct armv4_5_core_reg_s
{