diff options
Diffstat (limited to 'v4l_experimental/pvrusb2/pvrusb2-hdw.h')
-rw-r--r-- | v4l_experimental/pvrusb2/pvrusb2-hdw.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/v4l_experimental/pvrusb2/pvrusb2-hdw.h b/v4l_experimental/pvrusb2/pvrusb2-hdw.h index e09735ce6..a45da3223 100644 --- a/v4l_experimental/pvrusb2/pvrusb2-hdw.h +++ b/v4l_experimental/pvrusb2/pvrusb2-hdw.h @@ -1,6 +1,6 @@ /* * - * $Id: pvrusb2-hdw.h,v 1.4 2006/01/01 08:26:03 mcisely Exp $ + * $Id: pvrusb2-hdw.h,v 1.5 2006/01/09 06:24:23 mcisely Exp $ * * Copyright (C) 2005 Mike Isely <isely@pobox.com> * @@ -138,11 +138,11 @@ independently stopped / started. Usually you don't want to mess with this directly (let the driver handle things itself), but it is useful for debugging. */ -#define PVR2_SUBSYS_ENC_FIRMWARE 0x00000001 -#define PVR2_SUBSYS_ENC_CFG 0x00004000 -#define PVR2_SUBSYS_DIGITIZER_RUN 0x00008000 -#define PVR2_SUBSYS_USBSTREAM_RUN 0x00010000 -#define PVR2_SUBSYS_ENC_RUN 0x00020000 +#define PVR2_SUBSYS_ENC_FIRMWARE (1 << 0) +#define PVR2_SUBSYS_ENC_CFG (1 << 1) +#define PVR2_SUBSYS_DIGITIZER_RUN (1 << 2) +#define PVR2_SUBSYS_USBSTREAM_RUN (1 << 3) +#define PVR2_SUBSYS_ENC_RUN (1 << 4) #define PVR2_SUBSYS_CFG_ALL ( \ PVR2_SUBSYS_ENC_FIRMWARE | \ |