From 82cf3c7b1326bf8cac83264f33898c60a46a18ad Mon Sep 17 00:00:00 2001 From: Shaun Ruffell Date: Thu, 13 Dec 2012 10:51:38 -0600 Subject: [PATCH] dahdi: Trivial change of '__u32' -> 'u32' in struct dahdi_count. struct dahdi_count is not directly exposed to user space, so we can use the native u32 type instead of __u32 to clarify that. Signed-off-by: Shaun Ruffell --- include/dahdi/kernel.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/include/dahdi/kernel.h b/include/dahdi/kernel.h index c0fe08e..2220557 100644 --- a/include/dahdi/kernel.h +++ b/include/dahdi/kernel.h @@ -741,16 +741,16 @@ static inline int dahdi_have_netdev(const struct dahdi_chan *chan) { return 0; } #endif struct dahdi_count { - __u32 fe; /*!< Framing error counter */ - __u32 cv; /*!< Coding violations counter */ - __u32 bpv; /*!< Bipolar Violation counter */ - __u32 crc4; /*!< CRC4 error counter */ - __u32 ebit; /*!< current E-bit error count */ - __u32 fas; /*!< current FAS error count */ - __u32 be; /*!< current bit error count */ - __u32 prbs; /*!< current PRBS detected pattern */ - __u32 errsec; /*!< errored seconds */ - __u32 timingslips; /*!< Clock slips */ + u32 fe; /*!< Framing error counter */ + u32 cv; /*!< Coding violations counter */ + u32 bpv; /*!< Bipolar Violation counter */ + u32 crc4; /*!< CRC4 error counter */ + u32 ebit; /*!< current E-bit error count */ + u32 fas; /*!< current FAS error count */ + u32 be; /*!< current bit error count */ + u32 prbs; /*!< current PRBS detected pattern */ + u32 errsec; /*!< errored seconds */ + u32 timingslips; /*!< Clock slips */ }; /* map flagbits to flag masks */