]> git.proxmox.com Git - mirror_qemu.git/blobdiff - hw/ppc.h
Revert "Get rid of _t suffix"
[mirror_qemu.git] / hw / ppc.h
index c2a56c3e1727f5bf6a407e417e99cd2dcfe26d8c..4b481afbc9971759ef0f172bb514c9e8f849584a 100644 (file)
--- a/hw/ppc.h
+++ b/hw/ppc.h
@@ -1,11 +1,11 @@
 /* PowerPC hardware exceptions management helpers */
 typedef void (*clk_setup_cb)(void *opaque, uint32_t freq);
-typedef struct clk_setup a_clk_setup;
-struct clk_setup {
+typedef struct clk_setup_t clk_setup_t;
+struct clk_setup_t {
     clk_setup_cb cb;
     void *opaque;
 };
-static inline void clk_setup (a_clk_setup *clk, uint32_t freq)
+static inline void clk_setup (clk_setup_t *clk, uint32_t freq)
 {
     if (clk->cb != NULL)
         (*clk->cb)(clk->opaque, freq);