@@ -45,7 +45,7 @@ bp, flg, fm, np) \
45
45
.unpack_count = uc, \
46
46
.bpp = bp, \
47
47
.fetch_mode = fm, \
48
- .flag = {( flg)}, \
48
+ .flags = flg, \
49
49
.num_planes = np, \
50
50
.tile_height = DPU_TILE_HEIGHT_DEFAULT \
51
51
}
@@ -64,7 +64,7 @@ alpha, bp, flg, fm, np, th) \
64
64
.unpack_count = uc, \
65
65
.bpp = bp, \
66
66
.fetch_mode = fm, \
67
- .flag = {( flg)}, \
67
+ .flags = flg, \
68
68
.num_planes = np, \
69
69
.tile_height = th \
70
70
}
@@ -84,7 +84,7 @@ alpha, chroma, count, bp, flg, fm, np) \
84
84
.unpack_count = count, \
85
85
.bpp = bp, \
86
86
.fetch_mode = fm, \
87
- .flag = {( flg)}, \
87
+ .flags = flg, \
88
88
.num_planes = np, \
89
89
.tile_height = DPU_TILE_HEIGHT_DEFAULT \
90
90
}
@@ -102,7 +102,7 @@ alpha, chroma, count, bp, flg, fm, np) \
102
102
.unpack_count = 2, \
103
103
.bpp = 2, \
104
104
.fetch_mode = fm, \
105
- .flag = {( flg)}, \
105
+ .flags = flg, \
106
106
.num_planes = np, \
107
107
.tile_height = DPU_TILE_HEIGHT_DEFAULT \
108
108
}
@@ -121,7 +121,7 @@ flg, fm, np, th) \
121
121
.unpack_count = 2, \
122
122
.bpp = 2, \
123
123
.fetch_mode = fm, \
124
- .flag = {( flg)}, \
124
+ .flags = flg, \
125
125
.num_planes = np, \
126
126
.tile_height = th \
127
127
}
@@ -139,7 +139,7 @@ flg, fm, np, th) \
139
139
.unpack_count = 2, \
140
140
.bpp = 2, \
141
141
.fetch_mode = fm, \
142
- .flag = {( flg)}, \
142
+ .flags = flg, \
143
143
.num_planes = np, \
144
144
.tile_height = DPU_TILE_HEIGHT_DEFAULT \
145
145
}
@@ -158,7 +158,7 @@ flg, fm, np, th) \
158
158
.unpack_count = 2, \
159
159
.bpp = 2, \
160
160
.fetch_mode = fm, \
161
- .flag = {( flg)}, \
161
+ .flags = flg, \
162
162
.num_planes = np, \
163
163
.tile_height = th \
164
164
}
@@ -178,7 +178,7 @@ flg, fm, np) \
178
178
.unpack_count = 1, \
179
179
.bpp = bp, \
180
180
.fetch_mode = fm, \
181
- .flag = {( flg)}, \
181
+ .flags = flg, \
182
182
.num_planes = np, \
183
183
.tile_height = DPU_TILE_HEIGHT_DEFAULT \
184
184
}
@@ -1047,7 +1047,7 @@ const struct dpu_format *dpu_get_dpu_format_ext(
1047
1047
DPU_ERROR ("unsupported fmt: %4.4s modifier 0x%llX\n" ,
1048
1048
(char * )& format , modifier );
1049
1049
else
1050
- DRM_DEBUG_ATOMIC ("fmt %4.4s mod 0x%llX ubwc %d yuv %d \n" ,
1050
+ DRM_DEBUG_ATOMIC ("fmt %4.4s mod 0x%llX ubwc %d yuv %ld \n" ,
1051
1051
(char * )& format , modifier ,
1052
1052
DPU_FORMAT_IS_UBWC (fmt ),
1053
1053
DPU_FORMAT_IS_YUV (fmt ));
0 commit comments