/include/trace/events/ |
D | clk.h | 17 TP_PROTO(struct clk_core *core), 19 TP_ARGS(core), 22 __string( name, core->name ) 26 __assign_str(name, core->name); 34 TP_PROTO(struct clk_core *core), 36 TP_ARGS(core) 41 TP_PROTO(struct clk_core *core), 43 TP_ARGS(core) 48 TP_PROTO(struct clk_core *core), 50 TP_ARGS(core) [all …]
|
/include/linux/bcma/ |
D | bcma.h | 44 u8 (*read8)(struct bcma_device *core, u16 offset); 45 u16 (*read16)(struct bcma_device *core, u16 offset); 46 u32 (*read32)(struct bcma_device *core, u16 offset); 47 void (*write8)(struct bcma_device *core, u16 offset, u8 value); 48 void (*write16)(struct bcma_device *core, u16 offset, u16 value); 49 void (*write32)(struct bcma_device *core, u16 offset, u32 value); 51 void (*block_read)(struct bcma_device *core, void *buffer, 53 void (*block_write)(struct bcma_device *core, const void *buffer, 57 u32 (*aread32)(struct bcma_device *core, u16 offset); 58 void (*awrite32)(struct bcma_device *core, u16 offset, u32 value); [all …]
|
D | bcma_driver_gmac_cmn.h | 82 struct bcma_device *core; member 90 #define gmac_cmn_read16(gc, offset) bcma_read16((gc)->core, offset) 91 #define gmac_cmn_read32(gc, offset) bcma_read32((gc)->core, offset) 92 #define gmac_cmn_write16(gc, offset, val) bcma_write16((gc)->core, offset, val) 93 #define gmac_cmn_write32(gc, offset, val) bcma_write32((gc)->core, offset, val)
|
D | bcma_driver_pcie2.h | 146 struct bcma_device *core; member 151 #define pcie2_read16(pcie2, offset) bcma_read16((pcie2)->core, offset) 152 #define pcie2_read32(pcie2, offset) bcma_read32((pcie2)->core, offset) 153 #define pcie2_write16(pcie2, offset, val) bcma_write16((pcie2)->core, offset, val) 154 #define pcie2_write32(pcie2, offset, val) bcma_write32((pcie2)->core, offset, val) 156 #define pcie2_set32(pcie2, offset, set) bcma_set32((pcie2)->core, offset, set) 157 #define pcie2_mask32(pcie2, offset, mask) bcma_mask32((pcie2)->core, offset, mask)
|
D | bcma_driver_pci.h | 226 struct bcma_device *core; member 237 #define pcicore_read16(pc, offset) bcma_read16((pc)->core, offset) 238 #define pcicore_read32(pc, offset) bcma_read32((pc)->core, offset) 239 #define pcicore_write16(pc, offset, val) bcma_write16((pc)->core, offset, val) 240 #define pcicore_write32(pc, offset, val) bcma_write32((pc)->core, offset, val)
|
D | bcma_driver_mips.h | 38 struct bcma_device *core; member
|
D | bcma_driver_chipcommon.h | 578 struct bcma_device *core; /* Can be separated core or just ChipCommon one */ member 618 struct bcma_device *core; member 652 struct bcma_device *core; member 659 bcma_read32((cc)->core, offset) 661 bcma_write32((cc)->core, offset, val) 672 bcma_read32((cc)->pmu.core, offset) 674 bcma_write32((cc)->pmu.core, offset, val)
|
/include/linux/mfd/ |
D | si476x-core.h | 170 static inline void si476x_core_lock(struct si476x_core *core) in si476x_core_lock() argument 172 mutex_lock(&core->cmd_lock); in si476x_core_lock() 179 static inline void si476x_core_unlock(struct si476x_core *core) in si476x_core_unlock() argument 181 mutex_unlock(&core->cmd_lock); in si476x_core_unlock() 186 static inline u16 hz_to_si476x(struct si476x_core *core, int freq) in hz_to_si476x() argument 190 switch (core->power_up_parameters.func) { in hz_to_si476x() 203 static inline int si476x_to_hz(struct si476x_core *core, u16 freq) in si476x_to_hz() argument 207 switch (core->power_up_parameters.func) { in si476x_to_hz() 233 static inline u16 v4l2_to_si476x(struct si476x_core *core, int freq) in v4l2_to_si476x() argument 235 return hz_to_si476x(core, v4l2_to_hz(freq)); in v4l2_to_si476x() [all …]
|
D | wl1273-core.h | 270 int (*read)(struct wl1273_core *core, u8, u16 *); 271 int (*write)(struct wl1273_core *core, u8, u16); 272 int (*write_data)(struct wl1273_core *core, u8 *, u16); 273 int (*set_audio)(struct wl1273_core *core, unsigned int); 274 int (*set_volume)(struct wl1273_core *core, unsigned int);
|
/include/sound/ |
D | hda_codec.h | 41 struct hdac_bus core; member 68 #define to_hda_bus(bus) container_of(bus, struct hda_bus, core) 90 struct hdac_driver core; member 175 struct hdac_device core; member 291 #define dev_to_hda_codec(_dev) container_of(_dev, struct hda_codec, core.dev) 292 #define hda_codec_dev(_dev) (&(_dev)->core.dev) 295 container_of(_hdac, struct hdac_hda_priv, codec.core) 296 #define hdac_to_hda_codec(_hdac) container_of(_hdac, struct hda_codec, core) 299 list_for_each_entry(c, &(bus)->core.codec_list, core.list) 301 list_for_each_entry_safe(c, n, &(bus)->core.codec_list, core.list) [all …]
|
/include/crypto/ |
D | drbg.h | 142 const struct drbg_core *core; member 148 if (drbg && drbg->core) in drbg_statelen() 149 return drbg->core->statelen; in drbg_statelen() 155 if (drbg && drbg->core) in drbg_blocklen() 156 return drbg->core->blocklen_bytes; in drbg_blocklen() 162 if (drbg && drbg->core) in drbg_keylen() 163 return (drbg->core->statelen - drbg->core->blocklen_bytes); in drbg_keylen()
|
/include/sound/sof/ |
D | topology.h | 58 uint32_t core; member 273 uint32_t core; /**< core we run on */ member
|
/include/linux/ |
D | clk-provider.h | 327 struct clk_core *core; member 1229 int __clk_determine_rate(struct clk_hw *core, struct clk_rate_request *req); 1242 dst->core = src->core; in __clk_hw_set_clk()
|
D | tcp.h | 482 int somaxconn = READ_ONCE(sock_net(sk)->core.sysctl_somaxconn); in fastopen_queue_tune()
|
/include/net/ |
D | net_namespace.h | 118 struct netns_core core; member
|
/include/scsi/ |
D | libsas.h | 373 struct scsi_core core; member
|
/include/media/ |
D | v4l2-subdev.h | 788 const struct v4l2_subdev_core_ops *core; member
|