Home
last modified time | relevance | path

Searched refs:hal (Results 1 – 5 of 5) sorted by relevance

/drivers/staging/rtl8723au/
DMakefile14 hal/hal_com.o \
15 hal/hal_intf.o \
16 hal/Hal8723PwrSeq.o \
17 hal/Hal8723UHWImg_CE.o \
18 hal/HalDMOutSrc8723A_CE.o \
19 hal/HalHWImg8723A_BB.o \
20 hal/HalHWImg8723A_MAC.o \
21 hal/HalHWImg8723A_RF.o \
22 hal/HalPwrSeqCmd.o \
23 hal/odm_RegConfig8723A.o \
[all …]
/drivers/staging/rtl8188eu/
DMakefile20 hal/fw.o \
21 hal/mac_cfg.o \
22 hal/bb_cfg.o \
23 hal/rf_cfg.o \
24 hal/pwrseqcmd.o \
25 hal/pwrseq.o \
26 hal/Hal8188ERateAdaptive.o\
27 hal/hal_intf.o \
28 hal/hal_com.o \
29 hal/odm.o \
[all …]
/drivers/staging/lustre/lustre/mdc/
Dlproc_mdc.c98 struct hsm_action_list *hal; in mdc_kuc_write() local
111 len = sizeof(*lh) + sizeof(*hal) + MTI_NAME_MAXLEN + in mdc_kuc_write()
123 hal = (struct hsm_action_list *)(lh + 1); in mdc_kuc_write()
124 hal->hal_version = HAL_VERSION; in mdc_kuc_write()
125 hal->hal_archive_id = 1; in mdc_kuc_write()
126 hal->hal_flags = 0; in mdc_kuc_write()
127 obd_uuid2fsname(hal->hal_fsname, obd->obd_name, MTI_NAME_MAXLEN); in mdc_kuc_write()
130 hal->hal_count = 2; in mdc_kuc_write()
131 hai = hai_zero(hal); in mdc_kuc_write()
Dmdc_request.c1994 struct hsm_action_list *hal = (struct hsm_action_list *)(lh + 1); in mdc_hsm_copytool_send() local
1996 if (len < sizeof(*lh) + sizeof(*hal)) { in mdc_hsm_copytool_send()
1998 (int) (sizeof(*lh) + sizeof(*hal))); in mdc_hsm_copytool_send()
2003 lustre_swab_hal(hal); in mdc_hsm_copytool_send()
2012 lh->kuc_msglen, hal->hal_count, hal->hal_fsname); in mdc_hsm_copytool_send()
/drivers/staging/lustre/lustre/include/lustre/
Dlustre_user.h1109 static inline struct hsm_action_item *hai_zero(struct hsm_action_list *hal) in hai_zero() argument
1111 return (struct hsm_action_item *)(hal->hal_fsname + in hai_zero()
1112 cfs_size_round(strlen(hal-> \ in hai_zero()
1125 static inline int hal_size(struct hsm_action_list *hal) in hal_size() argument
1130 sz = sizeof(*hal) + cfs_size_round(strlen(hal->hal_fsname) + 1); in hal_size()
1131 hai = hai_zero(hal); in hal_size()
1132 for (i = 0; i < hal->hal_count; i++, hai = hai_next(hai)) in hal_size()