···7171 at the end of BG */72727373/* Minimal context save area for Hyper Forground */7474-typedef struct _hf_save_area_t {7474+struct dsp_hf_save_area {7575 u32 r10_save;7676 u32 r54_save;7777 u32 r98_save;···9696 rsa2Save9797 )9898 /* saved as part of HFG context */9999-} hf_save_area_t;9999+};100100101101102102/* Task link data structure */103103-typedef struct _tree_link_t {103103+struct dsp_tree_link {104104 ___DSP_DUAL_16BIT_ALLOC(105105 /* Pointer to sibling task control block */106106 next_scb,···114114 /* Pointer to local data */115115 this_spb116116 )117117-} tree_link_t;117117+};118118119119120120-typedef struct _task_tree_data_t {120120+struct dsp_task_tree_data {121121 ___DSP_DUAL_16BIT_ALLOC(122122 /* Initial tock count; controls task tree execution rate */123123 tock_count_limit,···155155 data_stack_base_ptr156156 )157157158158-} task_tree_data_t;158158+};159159160160161161-162162-typedef struct _interval_timer_data_t161161+struct dsp_interval_timer_data163162{164163 /* These data items have the same relative locations to those */165164 ___DSP_DUAL_16BIT_ALLOC(···171172 num_FG_ticks_this_interval, 172173 num_intervals173174 )174174-} interval_timer_data_t; 175175+};175176176177177178/* This structure contains extra storage for the task tree178179 Currently, this additional data is related only to a full context save */179179-typedef struct _task_tree_context_block_t {180180+struct dsp_task_tree_context_block {180181 /* Up to 10 values are saved onto the stack. 8 for the task tree, 1 for181182 The access to the context switch (call or interrupt), and 1 spare that182183 users should never use. This last may be required by the system */···237238 u32 saveaux2xaux3x;238239 u32 savershouthl;239240 u32 savershoutxmacmode;240240-} task_tree_context_block_t; 241241+};241242242243243243-typedef struct _task_tree_control_block_t {244244- hf_save_area_t context;245245- tree_link_t links;246246- task_tree_data_t data;247247- task_tree_context_block_t context_blk;248248- interval_timer_data_t int_timer;249249-} task_tree_control_block_t;244244+struct dsp_task_tree_control_block {245245+ struct dsp_hf_save_area context;246246+ struct dsp_tree_link links;247247+ struct dsp_task_tree_data data;248248+ struct dsp_task_tree_context_block context_blk;249249+ struct dsp_interval_timer_data int_timer;250250+};250251251252252253#endif /* __DSP_TASK_TYPES_H__ */
+2-2
sound/pci/cs46xx/cs46xx.c
···7878 const struct pci_device_id *pci_id)7979{8080 static int dev;8181- snd_card_t *card;8282- cs46xx_t *chip;8181+ struct snd_card *card;8282+ struct snd_cs46xx *chip;8383 int err;84848585 if (dev >= SNDRV_CARDS)