File tree Expand file tree Collapse file tree 3 files changed +2
-11
lines changed Expand file tree Collapse file tree 3 files changed +2
-11
lines changed Original file line number Diff line number Diff line change 49
49
*/
50
50
extern cpm8xx_t __iomem * cpmp ; /* Pointer to comm processor */
51
51
52
- #define cpm_dpalloc cpm_muram_alloc
53
- #define cpm_dpfree cpm_muram_free
54
- #define cpm_dpram_addr cpm_muram_addr
55
- #define cpm_dpram_phys cpm_muram_dma
56
-
57
52
extern void cpm_setbrg (uint brg , uint rate );
58
53
59
54
extern void __init cpm_load_patch (cpm8xx_t * cp );
Original file line number Diff line number Diff line change 87
87
*/
88
88
extern cpm_cpm2_t __iomem * cpmp ; /* Pointer to comm processor */
89
89
90
- #define cpm_dpalloc cpm_muram_alloc
91
- #define cpm_dpfree cpm_muram_free
92
- #define cpm_dpram_addr cpm_muram_addr
93
-
94
90
extern void cpm2_reset (void );
95
91
96
92
/* Baud rate generators.
Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ static s32 cpm_muram_alloc_common(unsigned long size,
141
141
*
142
142
* This function returns a non-negative offset into the muram area, or
143
143
* a negative errno on failure.
144
- * Use cpm_dpram_addr () to get the virtual address of the area.
144
+ * Use cpm_muram_addr () to get the virtual address of the area.
145
145
* Use cpm_muram_free() to free the allocation.
146
146
*/
147
147
s32 cpm_muram_alloc (unsigned long size , unsigned long align )
@@ -193,7 +193,7 @@ EXPORT_SYMBOL(cpm_muram_free);
193
193
* @size: number of bytes to allocate
194
194
* This function returns @offset if the area was available, a negative
195
195
* errno otherwise.
196
- * Use cpm_dpram_addr () to get the virtual address of the area.
196
+ * Use cpm_muram_addr () to get the virtual address of the area.
197
197
* Use cpm_muram_free() to free the allocation.
198
198
*/
199
199
s32 cpm_muram_alloc_fixed (unsigned long offset , unsigned long size )
You can’t perform that action at this time.
0 commit comments