/* $NetBSD: msg_210.c,v 1.7 2023/03/28 14:44:35 rillig Exp $ */ # 3 "msg_210.c" // Test for message: enum type mismatch between '%s' and '%s' in initialization [210] /* lint1-extra-flags: -X 351 */ enum A { A1 }; enum B { B1 }; typedef enum { C1 } C; typedef enum { D1 } D; enum A a1 = A1; /* expect+1: warning: enum type mismatch between 'enum A' and 'enum B' in initialization [210] */ enum A a2 = B1; C c1 = C1; /* expect+1: warning: enum type mismatch between 'enum typedef C' and 'enum typedef D' in initialization [210] */ C c2 = D1; ubmit();'> NetBSD fork for lockdoc analysismerlin@scholz.ruhr
summaryrefslogtreecommitdiff
path: root/sys/dev/video_if.h
AgeCommit message (Expand)Author
2022-07-05fix various typos in comments.andvar
2022-03-03video(9): Make softc argument mandatory for video_attach_mi.riastradh
2022-03-03video(4): Allow drivers to pass the softc explicitly.riastradh
2020-05-22Support VIDIOC_G_PARM/VIDIOC_S_PARMjmcneill
2019-12-27s/transfered/transferred/msaitoh
2010-12-24VIDIOC_QUERYCAP changes:jmcneill
2010-12-14video(4) changes to support analog tv capture devices:jmcneill
2008-09-20Add RGB555, RGB565, UYVY supportjmcneill
2008-09-18add missing enum; fixes compile of video.c.dogcow
2008-09-14Add VIDEO_FORMAT_YUV420 supportjmcneill
2008-09-14Add RGB24jmcneill
2008-09-06Add MI video4linux2 layer, part of Patrick Mahoney's Google Summerjmcneill