j
k
j a
j l
+static inline void qmc_clrsetbits16(void __iomem *addr, u16 clr, u16 set) +{ qmc_write16(addr, (qmc_read16(addr) & ~clr) | set); +}
+static inline void qmc_clrsetbits16(void __iomem *addr, u16 clr, u16 set) +{
+}
Please don't use inline in .c files. Let the compiler decide.
Andrew
Back to the thread
Back to the list