media: vidtv: remove more ENDIAN_BITFIELD nonsense
authorMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Sun, 20 Sep 2020 06:25:49 +0000 (08:25 +0200)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Thu, 1 Oct 2020 07:20:09 +0000 (09:20 +0200)
Changeset 870e350d4e39 ("media: vidtv: get rid of ENDIAN_BITFIELD nonsense")
was incomplete. There are still some wrong endannes logic at
the driver. Get rid of them.

Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
drivers/media/test-drivers/vidtv/vidtv_psi.h
drivers/media/test-drivers/vidtv/vidtv_ts.h

index c9e059bfb6eb979fdfcf9369700cd512bc4529d0..3f962cc78278561094f344c7cf152243078f45f7 100644 (file)
@@ -132,17 +132,9 @@ struct vidtv_psi_table_pat {
  */
 struct vidtv_psi_table_sdt_service {
        __be16 service_id;
-#if defined(__LITTLE_ENDIAN_BITFIELD)
        u8 EIT_present_following:1;
        u8 EIT_schedule:1;
        u8 reserved:6;
-#elif defined(__BIG_ENDIAN_BITFIELD)
-       u8 reserved:6;
-       u8 EIT_schedule:1;
-       u8 EIT_present_following:1;
-#else
-#error  "Unknown bitfield ordering"
-#endif
        __be16 bitfield; /* running_status: 3, free_ca:1, desc_loop_len:12 */
        struct vidtv_psi_desc *descriptor;
        struct vidtv_psi_table_sdt_service *next;
index fab523723633f5a8cc98599f039f2d4895b29d32..83dcc9183b453948265ee62e3348c2d334d7fc2a 100644 (file)
@@ -24,7 +24,6 @@
 struct vidtv_mpeg_ts_adaption {
        u8 length;
        struct {
-#if defined(__LITTLE_ENDIAN_BITFIELD)
                u8 extension:1;
                u8 private_data:1;
                u8 splicing_point:1;
@@ -33,18 +32,6 @@ struct vidtv_mpeg_ts_adaption {
                u8 priority:1;
                u8 random_access:1;
                u8 discontinued:1;
-#elif defined(__BIG_ENDIAN_BITFIELD)
-               u8 discontinued:1;
-               u8 random_access:1;
-               u8 priority:1;
-               u8 PCR:1;
-               u8 OPCR:1;
-               u8 splicing_point:1;
-               u8 private_data:1;
-               u8 extension:1;
-#else
-#error  "Unknown bitfield ordering"
-#endif
        } __packed;
        u8 data[];
 } __packed;