Searched defs:cc (Results 1 - 4 of 4) sorted by relevance
/include/linux/ |
H A D | clocksource.h | 45 cycle_t (*read)(const struct cyclecounter *cc); 62 * @cc: the cycle counter used by this instance 68 const struct cyclecounter *cc; member in struct:timecounter 75 * @cc: Pointer to cycle counter. 81 static inline u64 cyclecounter_cyc2ns(const struct cyclecounter *cc, argument 85 ret = (ret * cc->mult) >> cc->shift; 92 * @cc: A cycle counter, ready to be used. 100 const struct cyclecounter *cc, 118 * @cycle_tstamp: a value returned by tc->cc [all...] |
H A D | nvme.h | 28 __u32 cc; /* Controller Configuration */ member in struct:nvme_bar
|
/include/linux/bcma/ |
H A D | bcma.h | 401 static inline void bcma_mask32(struct bcma_device *cc, u16 offset, u32 mask) argument 403 bcma_write32(cc, offset, bcma_read32(cc, offset) & mask); 405 static inline void bcma_set32(struct bcma_device *cc, u16 offset, u32 set) argument 407 bcma_write32(cc, offset, bcma_read32(cc, offset) | set); 409 static inline void bcma_maskset32(struct bcma_device *cc, argument 412 bcma_write32(cc, offset, (bcma_read32(cc, offset) & mask) | set); 414 static inline void bcma_mask16(struct bcma_device *cc, u1 argument 418 bcma_set16(struct bcma_device *cc, u16 offset, u16 set) argument 422 bcma_maskset16(struct bcma_device *cc, u16 offset, u16 mask, u16 set) argument [all...] |
/include/linux/ssb/ |
H A D | ssb_driver_chipcommon.h | 600 static inline bool ssb_chipco_available(struct ssb_chipcommon *cc) argument 602 return (cc->dev != NULL); 606 #define chipco_read32(cc, offset) ssb_read32((cc)->dev, offset) 607 #define chipco_write32(cc, offset, val) ssb_write32((cc)->dev, offset, val) 609 #define chipco_mask32(cc, offset, mask) \ 610 chipco_write32(cc, offset, chipco_read32(cc, offset) & (mask)) 611 #define chipco_set32(cc, offse [all...] |
Completed in 145 milliseconds