)]}'
{
  "log": [
    {
      "commit": "e4671b6bc0b5b488adc5acbcfcbfa6661abec94e",
      "tree": "4d9be7abdbaaa3a74ea81e73b4b30e4499aeb385",
      "parents": [
        "6d8425b1e38f69e349818299f245d35fb5c3a7d5"
      ],
      "author": {
        "name": "Matthias Schwarzott",
        "email": "zzam@gentoo.org",
        "time": "Wed Apr 30 12:21:04 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Wed May 14 02:54:12 2008 -0300"
      },
      "message": "V4L/DVB (7861): mt312: Prefix functions only with mt312_, Add zl10313 to kconfig description\n\nThis patch does some small cleanup to mt312.\nIt changes kconfig description to also list the ZL10313.\n\nIt does change some strange symbol names to be consistent with\nmodule name mt312 and naming of all other functions in there.\n* vp310_mt312_ops -\u003e mt312_ops\n* vp310_mt312_attach -\u003e mt312_attach\n\nAdds a MODULE_AUTHOR for me\n\nSigned-off-by: Matthias Schwarzott \u003czzam@gentoo.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "4ed83b51d3669628d970c2fea604064d2e0ac6af",
      "tree": "49165a5f58f9dd4c689a00f4a80248299b906497",
      "parents": [
        "50510993e0452e0941fd03f63aa08256dd9c7fdc"
      ],
      "author": {
        "name": "Adrian Bunk",
        "email": "bunk@kernel.org",
        "time": "Mon Apr 28 15:39:09 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Wed May 14 02:54:10 2008 -0300"
      },
      "message": "V4L/DVB (7857): make itd1000_fre_values[] static const\n\nitd1000_fre_values[] can become static const.\n\nSigned-off-by: Adrian Bunk \u003cbunk@kernel.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "755a18baad393836c88ce92c3b7198c70e2e3205",
      "tree": "cf08eb2c4a5d23f6d9ee1a18146ec7740bbeb817",
      "parents": [
        "ec44c9aed0eddceaef3c6b4d23f6d7702ec57b4d"
      ],
      "author": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Tue May 06 14:09:01 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Wed May 14 02:54:08 2008 -0300"
      },
      "message": "V4L/DVB (7851): Fix FW_LOADER depencency at v4l/dvb\n\nSince:\n1) FW_LOADER is defined as:\n\nconfig FW_LOADER\n        tristate \"Userspace firmware loading support\"\n        depends on HOTPLUG\n\n2) several V4L/DVB driver just selects it;\n\n3) select is not smart enough to auto-select HOTPLUG, if select FW_LOADER.\n\nSo, All drivers that select FW_LOADER should also depend on HOTPLUG.\n\nAn easier solution (for the end-user perspective) would be to \"select HOTPLUG\".\nHowever, live is not simple. This would cause recursive dependency issues like\nthis one:\n\ndrivers/usb/Kconfig:62:error: found recursive dependency: USB -\u003e USB_OHCI_HCD\n-\u003e I2C -\u003e MEDIA_TUNER -\u003e MEDIA_TUNER_XC2028 -\u003e HOTPLUG -\u003e PCCARD -\u003e PCMCIA -\u003e\nUSB_ARCH_HAS_HCD -\u003e MOUSE_APPLETOUCH -\u003e USB\n\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "dc9d522a1358bfb87e9ed8718cc1e4d5141a5468",
      "tree": "8d5fadd974f23020dbf71e87fede13cc50e88938",
      "parents": [
        "696b9562df15795facf9ffbd470983e776fa6c19"
      ],
      "author": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Sun May 04 20:32:45 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Wed May 14 02:54:03 2008 -0300"
      },
      "message": "V4L/DVB (7836): cinergyT2 build fix\n\nx86.git testing found the following build bug in v2.6.26-rc1:\n\n  drivers/built-in.o: In function `cinergyt2_probe\u0027:\n  cinergyT2.c:(.text+0xb6117): undefined reference to `input_allocate_device\u0027\n  cinergyT2.c:(.text+0xb6230): undefined reference to `input_register_device\u0027\n  cinergyT2.c:(.text+0xb623d): undefined reference to `input_free_device\u0027\n\nwith the following config:\n\n  http://redhat.com/~mingo/misc/config-Sun_May__4_22_06_54_CEST_2008.bad\n\nThe reason for the bug is that the cinergyT2 driver depends on\nCONFIG_INPUT functionality, but if INPUT is modular it\u0027s still possible\nto build CONFIG_DVB_CINERGYT2\u003dy - which leads to missing symbols.\n\nThe solution is to make DVB_CINERGYT2 dependent on INPUT.\n\n[ This solves the build problem - i have not tested the driver on this card. ]\n\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "71a35fe2a345eb3704e1f1b4da65451d3e2b8c2e",
      "tree": "5222b0da35875a3351af2990f333a181030a09c9",
      "parents": [
        "fa146c6dceffa68fa12f8d0b797ab9753fa1c792"
      ],
      "author": {
        "name": "Robert Schedel",
        "email": "r.schedel@yahoo.de",
        "time": "Sat May 03 12:58:36 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Wed May 14 02:54:02 2008 -0300"
      },
      "message": "V4L/DVB (7830): dvb_ca_en50221: Fix High CPU load in \u0027top\u0027 due to budget_av slot polling\n\nThis change addresses kernel bug #10459: In kernel 2.6.25 the\nbudget_av driver polls for an CI slot in 100ms intervals (because no\ninterrupt solution for budget_av cards is feasible due to HW reasons).\nIf no CI/CAM is connected to the DVB card, polling times out only after 250ms.\nThis periodic polling leads to high CPU load.\n\nThe change increases the polling interval for empty slots from 100ms to 5s.\nIntervals for remaining slot states (invalid, in progress, ready) are unchanged,\nas they are either temporary conditions or no timeout should occur.\n\nSigned-off-by: Robert Schedel \u003cr.schedel@yahoo.de\u003e\nSigned-off-by: Oliver Endriss \u003co.endriss@gmx.de\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "d74bee8b4776b5051c650a90f49a2022d46d8588",
      "tree": "88262925db70219b38f3e6bf197df7e40fa74e15",
      "parents": [
        "f4d2782411d502c39f2c21376377c745c0f09061"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@linux-foundation.org",
        "time": "Mon Apr 28 08:54:56 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Tue Apr 29 18:41:41 2008 -0300"
      },
      "message": "V4L/DVB (7783): drivers/media/dvb/frontends/s5h1420.c: printk fix\n\ndrivers/media/dvb/frontends/s5h1420.c: In function `s5h1420_setsymbolrate\u0027:\ndrivers/media/dvb/frontends/s5h1420.c:484: warning: long long unsigned int format, u64 arg (arg 2)\n\nWe do not know what type the architecture uses for u64.\n\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "149ef72deeba57078216c9fa678baff392295853",
      "tree": "038cf488b424094b0dbe05a63a9cbb28f87eaaec",
      "parents": [
        "f1784354f774e1fa4863fc6382296ef6ede26dc5"
      ],
      "author": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Tue Apr 29 21:38:46 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Tue Apr 29 18:41:38 2008 -0300"
      },
      "message": "Rename common tuner Kconfig names to use the same\nnamespace for all of them.\n"
    },
    {
      "commit": "b094516f9589245617eb5d0452769826063f72ac",
      "tree": "45593c7f1ae4c180d97ed7b9cbc27a85c03f55d1",
      "parents": [
        "df7aaaf3a74016cbc72382b6388c7c62f3df49b2"
      ],
      "author": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Tue Apr 29 21:38:45 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Tue Apr 29 18:41:38 2008 -0300"
      },
      "message": "V4L/DVB (7769): Move other terrestrial tuners to common/tuners\n\nThose tuners are currently used only under media/dvb. However,\nthey can support also analog TV. Better to move them to the same place\nas the other hybrid tuners. This would make easier to use those tuners also\nby analog drivers.\n\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "df7aaaf3a74016cbc72382b6388c7c62f3df49b2",
      "tree": "26247ea3dd9049f84139e4168d78d1bd8f4f1be0",
      "parents": [
        "7c91f0624a9a2b8b9b122cf94fef34bc7f7347a6"
      ],
      "author": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Sat Apr 26 16:19:58 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Tue Apr 29 18:41:37 2008 -0300"
      },
      "message": "V4L/DVB (7768): reorganize some DVB-S Kconfig items\n\nThere are some DVB-S tuners together with DVB-S tags, while\nothers together with tuners. Better to have all of them together.\n\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "7c91f0624a9a2b8b9b122cf94fef34bc7f7347a6",
      "tree": "e48220117475037125e86a3add48aa12cef7731f",
      "parents": [
        "5fe95e0b865060839449e1a61c1d5c67a4faab9a"
      ],
      "author": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Tue Apr 29 21:38:44 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Tue Apr 29 18:41:37 2008 -0300"
      },
      "message": "V4L/DVB(7767): Move tuners to common/tuners\n\nThere were several issues in the past, caused by the hybrid tuner design, since\nnow, the same tuner can be used by drivers/media/dvb and drivers/media/video.\n\nKconfig items were rearranged, to split V4L/DVB core from their drivers.\n\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "8b4f1d031627d6f36d6ada05ab7670c2317efdaa",
      "tree": "29488e2587325c2e254201a27148af5d7761e9c7",
      "parents": [
        "8367fe248d74d53a6ae10e373c73230ab1536599"
      ],
      "author": {
        "name": "Steven Toth",
        "email": "stoth@hauppauge.com",
        "time": "Fri Apr 25 03:44:36 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Sat Apr 26 09:29:56 2008 -0300"
      },
      "message": "V4L/DVB (7741): s5h1411: Adding support for this ATSC/QAM demodulator\n\nThis adds full support for this demodulator.\n\nSigned-off-by: Steven Toth \u003cstoth@hauppauge.com\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "a45e0b45e52adb10634112b338dfb3e66a83de31",
      "tree": "6d37532e3dcbffe2be848d7cbca7dc7b4b6aa46a",
      "parents": [
        "d0d14226b94546a0054ded495157aa1cb41a7259"
      ],
      "author": {
        "name": "Harvey Harrison",
        "email": "harvey.harrison@gmail.com",
        "time": "Fri Apr 25 01:49:24 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Sat Apr 26 09:29:55 2008 -0300"
      },
      "message": "V4L/DVB (7739): mt312.h: dubious one-bit signed bitfield\n\nMake it unsigned (0/1) rather than signed (0/-1).\n\nSigned-off-by: Harvey Harrison \u003charvey.harrison@gmail.com\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "b1721d0da266b4af8cb4419473b4ca36206ab200",
      "tree": "2bf10469ad3262e4b82a5ab2e4dba27c41529c26",
      "parents": [
        "bc84e0a160e383deb56568f4e03bc51b1ce16775"
      ],
      "author": {
        "name": "Harvey Harrison",
        "email": "harvey.harrison@gmail.com",
        "time": "Fri Apr 25 19:03:08 2008 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Fri Apr 25 19:06:59 2008 -0700"
      },
      "message": "v4l/dvb: add statics to avoid multiple definitions\n\nSigned-off-by: Harvey Harrison \u003charvey.harrison@gmail.com\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "d5b3d9ff368dee5e87d9987161ff258d87ecc7c0",
      "tree": "0a8a7e9eee5dedeec1f92ff2f52ebf8a29b1411b",
      "parents": [
        "6676237398d0c2e61e5a3a27e0951f60d6ef6fe3"
      ],
      "author": {
        "name": "Steven Toth",
        "email": "stoth@hauppauge.com",
        "time": "Tue Apr 22 22:52:01 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:09:45 2008 -0300"
      },
      "message": "V4L/DVB (7674): tda10048: Adding an SNR table\n\nTrying to improve the SNR reporting.\n\nSigned-off-by: Steven Toth \u003cstoth@hauppauge.com\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "a38d6e37c0bc073bae5eff37c939978974ea9712",
      "tree": "951a1603067e2c5bcdf26dacf6acacaa7b33f059",
      "parents": [
        "5aa2110f3f33feb4a0c67a4996dc400dc594bc1d"
      ],
      "author": {
        "name": "Steven Toth",
        "email": "stoth@hauppauge.com",
        "time": "Tue Apr 22 15:37:01 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:09:45 2008 -0300"
      },
      "message": "V4L/DVB (7672): dib7000p: Add output mode param to the attach struct\n\nThis allows future drivers to select the most appropriate output mode.\n\nSigned-off-by: Steven Toth \u003cstoth@hauppauge.com\u003e\nReviewed-by: Patrick Boettcher \u003cpb@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "87dd965f101bafea7c5e507f686814a0f0057417",
      "tree": "182efcddd51b3a7d3607723232ed046a05d18496",
      "parents": [
        "da2c7f66174d082e6b8e1b0c9c0576833abfe866"
      ],
      "author": {
        "name": "Oliver Endriss",
        "email": "o.endriss@gmx.de",
        "time": "Sun Apr 20 22:34:57 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:09:45 2008 -0300"
      },
      "message": "V4L/DVB (7663): budget: Support for Activy budget card with BSBE1 tuner\n\nAdd support for Activy budget card with BSBE1 tuner, subsystem id 0x1131:0x4f60.\nLow band and DiSEqC support should work now (BSBE1 and BSRU6 tuner).\n\nSigned-off-by: Oliver Endriss \u003co.endriss@gmx.de\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "da2c7f66174d082e6b8e1b0c9c0576833abfe866",
      "tree": "aba5ce91c1733c08fa4ea059b5d698a15bc52a8d",
      "parents": [
        "e84b133e329ddad725907844c285efcd35dae39d"
      ],
      "author": {
        "name": "Oliver Endriss",
        "email": "o.endriss@gmx.de",
        "time": "Sun Apr 20 22:13:37 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:09:45 2008 -0300"
      },
      "message": "V4L/DVB (7662): stv0299: Fixed some typos\n\nFixed some typos.\n\nSigned-off-by: Oliver Endriss \u003co.endriss@gmx.de\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "e84b133e329ddad725907844c285efcd35dae39d",
      "tree": "c9cda47857845b8bdd88bd5411a90301efbbad0d",
      "parents": [
        "94ad6de7051a9eb6beda096144c5b409538eab86"
      ],
      "author": {
        "name": "Oliver Endriss",
        "email": "o.endriss@gmx.de",
        "time": "Sun Apr 20 21:57:34 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:09:45 2008 -0300"
      },
      "message": "V4L/DVB (7661): stv0299: Add flag to turn off OP0 output\n\nAdd flag to turn off OP0 output.\n\nSigned-off-by: Oliver Endriss \u003co.endriss@gmx.de\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "94ad6de7051a9eb6beda096144c5b409538eab86",
      "tree": "1fc49f4ba23895e4497a138bcced834d74b73b1d",
      "parents": [
        "a095be4b030cd7eb5ac2a7dcb86e803db149a8db"
      ],
      "author": {
        "name": "Oliver Endriss",
        "email": "o.endriss@gmx.de",
        "time": "Sun Apr 20 20:41:42 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:09:45 2008 -0300"
      },
      "message": "V4L/DVB (7660): bsbe1: Use settings recommended by the manufacturer\n\nReworked the BSBE1 tuner support in bsbe1.h to follow\nthe ALPS-recommended parameters more closely.\n\nTested with BSBE1-based Activy cards and TT DVB-S rev 2.3.\n\nSigned-off-by: Oliver Endriss \u003co.endriss@gmx.de\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "a095be4b030cd7eb5ac2a7dcb86e803db149a8db",
      "tree": "0e6cbb94af38313f8a65b85fc63f52aed98f3bc8",
      "parents": [
        "48c01a9c2d245b229f8b709040cb1776b00dc683"
      ],
      "author": {
        "name": "Andrea Odetti",
        "email": "mariofutire@gmail.com",
        "time": "Sun Apr 20 19:14:51 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:09:45 2008 -0300"
      },
      "message": "V4L/DVB (7659): dvb-core: Implement DMX_SET_BUFFER_SIZE for dvr\n\nImplementation of DMX_SET_BUFFER_SIZE for dvr.\nSynchronization of the code of DMX_SET_BUFFER_SIZE for demux and dvr.\n\nSigned-off-by: Andrea Odetti \u003cmariofutire@gmail.com\u003e\nSigned-off-by: Oliver Endriss \u003co.endriss@gmx.de\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "48c01a9c2d245b229f8b709040cb1776b00dc683",
      "tree": "8a33e3640fc89a061222abc9aaddc55be0650dd2",
      "parents": [
        "3ff9a81b21c673fd91ad8456242ca68922f77ac4"
      ],
      "author": {
        "name": "Andrea Odetti",
        "email": "mariofutire@gmail.com",
        "time": "Sun Apr 20 18:37:45 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:09:44 2008 -0300"
      },
      "message": "V4L/DVB (7658): dvb-core: Fix DMX_SET_BUFFER_SIZE in case the buffer shrinks\n\nThis patch fixes the bug in DMX_SET_BUFFER_SIZE for the demux.\nBasically it resets read and write pointers to 0 in case they are\nbeyond the new size of the buffer.\n\nSigned-off-by: Andrea Odetti \u003cmariofutire@gmail.com\u003e\nSigned-off-by: Oliver Endriss \u003co.endriss@gmx.de\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "3ff9a81b21c673fd91ad8456242ca68922f77ac4",
      "tree": "6fdeec0587c21432139865308d80822e095f7d42",
      "parents": [
        "b1c54fe2aed3e2812f5b42916894f15e84b484b5"
      ],
      "author": {
        "name": "Hartmut Hackmann",
        "email": "hartmut.hackmann@t-online.de",
        "time": "Sun Apr 13 22:41:19 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:09:44 2008 -0300"
      },
      "message": "V4L/DVB (7656): tda826x: Calculate cut off fequency from symbol rate\n\nThis patch makes the tuner work with transonders providing higher\nsymbol rates.\nIt was contributed by Oliver Endriss.\n\nSigned-off-by: Hartmut Hackmann \u003chartmut.hackmann@t-online.de\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "b1c54fe2aed3e2812f5b42916894f15e84b484b5",
      "tree": "f7c43b960a9da76116871e0f0291934b9c5fb40c",
      "parents": [
        "9a1b04e461fc8127c902a988cd9a082ba0680b11"
      ],
      "author": {
        "name": "Hartmut Hackmann",
        "email": "hartmut.hackmann@t-online.de",
        "time": "Sun Apr 13 21:09:11 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:09:44 2008 -0300"
      },
      "message": "V4L/DVB (7655): tda10086 coding stlye fixes\n\nThis patch replaces the c++ style comments.\nNo functional changes\n\nSigned-off-by: Hartmut Hackmann \u003chartmut.hackmann@t-online.de\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "9a1b04e461fc8127c902a988cd9a082ba0680b11",
      "tree": "5f09a53b458432fddba9ed871f5731a83e41f7e2",
      "parents": [
        "b37f2d6a31fc8e80c79a0a214d83b128aa796543"
      ],
      "author": {
        "name": "Hartmut Hackmann",
        "email": "hartmut.hackmann@t-online.de",
        "time": "Wed Apr 09 23:07:11 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:09:44 2008 -0300"
      },
      "message": "V4L/DVB (7654): tda10086: make the xtal frequency a configuration option\n\nSome DVB-S boards, i.e. with the SD1878 tuner, use a 4 MHz reference frequency.\nThis reqires a different setup of the clock PLL.\nThis patch adds an enum to the tda10086_config struct and sets the proper\nvalues for the boards.\n\nThis patch also fixes the DVB-S section of the MD7134_BRIDGE_2\n\nSigned-off-by: Hartmut Hackmann \u003chartmut.hackmann@t-online.de\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "33e5316113b1a472f54579f014739e4a4a53d704",
      "tree": "3126994d51273f09b3da41b25a3bfa83ac187970",
      "parents": [
        "d1e0b57162f45bb9c6bff25aa33b6e8424556422"
      ],
      "author": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Mon Apr 21 06:58:48 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:09:44 2008 -0300"
      },
      "message": "V4L/DVB (7651): tuner-xc2028: Several fixes to SCODE\n\nThis patch fixes several issues on SCODE:\n\n1) The extracting tool weren\u0027t generating the proper tags for SCODE. This\n   has almost no effect, since those tags shouldn\u0027t be used;\n\n2) DIBCOM52 were using a wrong IF. It should be 5200, instead of 5700;\n\n3) seek_firmware were wanting an exact match for firmware type. This is\n   wrong. As result, no SCODE firmware were loaded;\n\n4) A few files were including the wrong file for seeking demod firmwares;\n\n5) XC3028_FE_DEFAULT can be used, if user doesn\u0027t want to load a firmware.\n   However, this weren\u0027t documentated. This feature require more testing.\n\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "7bbb1ce4f3e517666ad27f3307d49bb2da69ffec",
      "tree": "f41e23bf01d70667c23ea5b5bd56c6330c3dbf08",
      "parents": [
        "6b92b3bd7ac91b7e255541f4be9bfd55b12dae41"
      ],
      "author": {
        "name": "Steven Toth",
        "email": "stoth@hauppauge.com",
        "time": "Sat Apr 19 01:06:25 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:09:44 2008 -0300"
      },
      "message": "V4L/DVB (7644): Adding support for the NXP TDA10048HN DVB OFDM demodulator\n\nAdding support for the NXP TDA10048HN DVB OFDM demodulator\n\nSigned-off-by: Steven Toth \u003cstoth@hauppauge.com\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "353a2761ffb3c4f43ec0c9c99bbe64629646b347",
      "tree": "d8892c34e20cf3584d21424d493831d100fdfd85",
      "parents": [
        "18d73c58b5ea7425db05b666408f6f682d837b73"
      ],
      "author": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Fri Apr 18 22:24:01 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:09:43 2008 -0300"
      },
      "message": "V4L/DVB (7639): au8522: fix a small bug introduced by Checkpatch cleanup\n\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "18d73c58b5ea7425db05b666408f6f682d837b73",
      "tree": "d071b99fdbb10abbed2c9c81ec3ea2a2519c4ffc",
      "parents": [
        "bbdf855b0e98ba576b3577522af5e5c7503c4ed0"
      ],
      "author": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Fri Apr 18 22:12:52 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:09:43 2008 -0300"
      },
      "message": "V4L/DVB (7638): CodingStyle fixes for au8522 and au0828\n\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "37be1ea40e42c0de63cedbe65d35cbe6c2a81c0a",
      "tree": "d1e68f4af1ab4fff43c16f0bcae662dd07e38379",
      "parents": [
        "a9c36aad59a06df199cdbb365d0b05663f8008f1"
      ],
      "author": {
        "name": "Steven Toth",
        "email": "stoth@hauppauge.com",
        "time": "Thu Apr 17 21:45:08 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:09:43 2008 -0300"
      },
      "message": "V4L/DVB (7635): au8522: Cleanup\n\nau8522: Cleanup\n\nSigned-off-by: Steven Toth \u003cstoth@hauppauge.com\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "0daa5de740c65de7c9554071eec84c6731370065",
      "tree": "bb7c8810b85209746a23e17188d4c0585438b145",
      "parents": [
        "f01699b482875bf224a907a45d58e8e3739d554b"
      ],
      "author": {
        "name": "Michael Krufky",
        "email": "mkrufky@linuxtv.org",
        "time": "Thu Apr 10 04:24:56 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:09:43 2008 -0300"
      },
      "message": "V4L/DVB (7633): au8522: consolidate mse2snr_lookup functions\n\nconsolidate au8522_qam256_mse2snr_lookup, au8522_qam64_mse2snr_lookup and\nau8522_vsb_mse2snr_lookup into a single function, au8522_mse2snr_lookup.\n\nPass the mse2snr table into au8522_mse2snr_lookup depending on the\nmodulation type.\n\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "f01699b482875bf224a907a45d58e8e3739d554b",
      "tree": "80639537eb911dd92d9dcb9c86c90ff6c0f23f60",
      "parents": [
        "fb8152cb01dc2bca04a6ee561920d0a02af6c73b"
      ],
      "author": {
        "name": "Steven Toth",
        "email": "stoth@hauppauge.com",
        "time": "Thu Apr 10 02:01:48 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:09:43 2008 -0300"
      },
      "message": "V4L/DVB (7632): au8522: Added SNR support and basic cleanup\n\nau8522: Added SNR support and basic cleanup\n\nSigned-off-by: Steven Toth \u003cstoth@hauppauge.com\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "fb8152cb01dc2bca04a6ee561920d0a02af6c73b",
      "tree": "24ce9b01afa8e9f0d8c498258a20db892ec28bbc",
      "parents": [
        "8973dc4b70c5506596207da3fddab03002357178"
      ],
      "author": {
        "name": "Michael Krufky",
        "email": "mkrufky@linuxtv.org",
        "time": "Sat Apr 05 23:13:05 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:09:43 2008 -0300"
      },
      "message": "V4L/DVB (7631): au8522: add function au8522_read_mse\n\nadd function au8522_read_mse, which will be used to compute snr\n\nTO DO: mse2snr\n\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "8973dc4b70c5506596207da3fddab03002357178",
      "tree": "8f93a318a628c170a7ff34c3244a532485c65e78",
      "parents": [
        "ce1719a61c7c0ac40c6244e6b354181dde27062d"
      ],
      "author": {
        "name": "Michael Krufky",
        "email": "mkrufky@linuxtv.org",
        "time": "Sat Apr 05 23:08:08 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:09:43 2008 -0300"
      },
      "message": "V4L/DVB (7630): au8522: fix au8522_read_ucblocks for qam\n\nucblocks are reported in separate registers for vsb \u0026 qam\n\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "ce1719a61c7c0ac40c6244e6b354181dde27062d",
      "tree": "e5d843281a20316cb0c786a899f36f6ab53de6c9",
      "parents": [
        "e059b0fac7d9df8bf759d7092a16221f0fd250e8"
      ],
      "author": {
        "name": "Michael Krufky",
        "email": "mkrufky@linuxtv.org",
        "time": "Wed Apr 02 18:59:48 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:09:43 2008 -0300"
      },
      "message": "V4L/DVB (7629): au8522: replace __FUNCTION__ with __func__\n\nreplace __FUNCTION__ with __func__ and clean associated checkpatch.pl warnings.\n\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "e059b0fac7d9df8bf759d7092a16221f0fd250e8",
      "tree": "6c5a3d42a5652a6061d626bf2aa13355c4ae9c6a",
      "parents": [
        "f07e8e4bb790f6cb462d5d5425193cad874ac0de"
      ],
      "author": {
        "name": "Michael Krufky",
        "email": "mkrufky@linuxtv.org",
        "time": "Wed Apr 02 18:59:48 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:09:43 2008 -0300"
      },
      "message": "V4L/DVB (7628): au8522: codingstyle cleanups\n\nFixed some checkpatch.pl warnings\n\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "265a6510629ab39f33ece43a857089dd37978184",
      "tree": "021773e15d68f7d99c571d723a48397ae9cf9ef5",
      "parents": [
        "c8234ea37fb8b7a904223672edf36d269ea569a2"
      ],
      "author": {
        "name": "Steven Toth",
        "email": "stoth@hauppauge.com",
        "time": "Fri Apr 18 21:34:00 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:09:42 2008 -0300"
      },
      "message": "V4L/DVB (7621): Add support for Hauppauge HVR950Q/HVR850/FusioHDTV7-USB\n\nIncluding support for the AU0828 USB Bridge.\nIncluding support for the AU8522 ATSC/QAM Demodulator.\nIncluding support for the AU8522 ATSC/QAM Demodulator.\n\nSigned-off-by: Steven Toth \u003cstoth@hauppauge.com\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "ca19aaa510b150ca358166b29eb2bb62ad971f76",
      "tree": "c95e024b03b98ae0aa7d621620c3487f82f8611b",
      "parents": [
        "c9dd82c2f978e4ebac1cbb7cee8d379d1090154b"
      ],
      "author": {
        "name": "Patrick Boettcher",
        "email": "pb@linuxtv.org",
        "time": "Sun Apr 13 15:49:22 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:09:40 2008 -0300"
      },
      "message": "V4L/DVB (7569): Added support for SkyStar2 rev2.7 and ITD1000 DVB-S tuner\n\nThis patches adds support for the SkyStar2 rev2.7 with the PN1010/ITD1000 Frontend.\n\nSigned-off-by: Patrick Boettcher \u003cpb@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "c9dd82c2f978e4ebac1cbb7cee8d379d1090154b",
      "tree": "2f55edb1a1b7fc4611455fd56c2f8b8bfc5c33ed",
      "parents": [
        "11d3f323930ef625c1018ed13adeb04127c356e0"
      ],
      "author": {
        "name": "Patrick Boettcher",
        "email": "pb@linuxtv.org",
        "time": "Sat Mar 29 21:28:07 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:09:40 2008 -0300"
      },
      "message": "V4L/DVB (7471): SkyStar2: preparing support for the rev2.8\n\nSupport is prepared, but the CX24113-driver .c-file is missing. After sorting out the NDA problems, the file will be there immediatly.\n\nSigned-off-by: Patrick Boettcher \u003cpb@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "11d3f323930ef625c1018ed13adeb04127c356e0",
      "tree": "e361482488c108ba7c48f922a1d7e465ada003cb",
      "parents": [
        "6a5cbd591c703491b62892682adc124ece67f3a9"
      ],
      "author": {
        "name": "Matthias Schwarzott",
        "email": "zzam@gentoo.org",
        "time": "Sat Apr 12 15:04:50 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:09:40 2008 -0300"
      },
      "message": "V4L/DVB (7575): mt312: add attach-time setting to invert lnb-voltage\n\nAdd a setting to config struct for inversion of lnb-voltage.\nNeeded for support of Avermedia A700 cards.\n\nSigned-off-by: Matthias Schwarzott \u003czzam@gentoo.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "6a5cbd591c703491b62892682adc124ece67f3a9",
      "tree": "a0cab980ffc9483ba10602a17f6e117c84117dc7",
      "parents": [
        "111221fb676176dc90638d6004f1c26164ddd5ae"
      ],
      "author": {
        "name": "Matthias Schwarzott",
        "email": "zzam@gentoo.org",
        "time": "Sat Apr 12 15:04:49 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:09:40 2008 -0300"
      },
      "message": "V4L/DVB (7574): mt312: Add support for zl10313 demod\n\nAdd zl10313 support to mt312 driver.\nzl10313 uses 10.111MHz xtal.\n\nSigned-off-by: Matthias Schwarzott \u003czzam@gentoo.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "111221fb676176dc90638d6004f1c26164ddd5ae",
      "tree": "3ebd78a1eb4a77fbbb7ccc91bec92a3564f7923d",
      "parents": [
        "82cd2dff4a5562a081c8bbf449a1ae7b9ecb5b1b"
      ],
      "author": {
        "name": "Matthias Schwarzott",
        "email": "zzam@gentoo.org",
        "time": "Sat Apr 12 15:04:48 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:09:40 2008 -0300"
      },
      "message": "V4L/DVB (7573): mt312: Supports different xtal frequencies\n\nDo not hardcode xtal frequency but allow different values\nfor future zl10313 support.\n\nSigned-off-by: Matthias Schwarzott \u003czzam@gentoo.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "82cd2dff4a5562a081c8bbf449a1ae7b9ecb5b1b",
      "tree": "e62706a33540adce477fde218d6c3f6baef59403",
      "parents": [
        "1881ee89e0fe03ac5bba9045acb3bea1818f9466"
      ],
      "author": {
        "name": "Matthias Schwarzott",
        "email": "zzam@gentoo.org",
        "time": "Sat Apr 12 15:04:47 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:09:39 2008 -0300"
      },
      "message": "V4L/DVB (7572): mt312: Fix diseqc\n\nCorrect the frequency of the emitted diseqc signal to 22kHz.\nAdds sleep(100) to wait for message to be transmitted.\n\nFor now the only user of mt312 is b2c2-flexcop, and it\ndoes overwrite all diseqc related functions with own code.\n\nSigned-off-by: Matthias Schwarzott \u003czzam@gentoo.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "1881ee89e0fe03ac5bba9045acb3bea1818f9466",
      "tree": "6f19074842f90d0dc7aaa46aac4d60d409de077e",
      "parents": [
        "dbad108bdcb30629c850f5606949510da010a686"
      ],
      "author": {
        "name": "Matthias Schwarzott",
        "email": "zzam@gentoo.org",
        "time": "Sat Apr 12 15:04:46 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:09:39 2008 -0300"
      },
      "message": "V4L/DVB (7571): mt312: Cleanup buffer variables of read/write functions\n\nChange type of buffer variables from void* to u8* to save some casts.\n\nSigned-off-by: Matthias Schwarzott \u003czzam@gentoo.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "dbad108bdcb30629c850f5606949510da010a686",
      "tree": "9d1460aaec7ec5be9c1374a86b8a6bc7b8b0c42d",
      "parents": [
        "44dc733cd9edac53402d705cd2f720accd0b3e2c"
      ],
      "author": {
        "name": "Patrick Boettcher",
        "email": "pb@linuxtv.org",
        "time": "Sun Apr 13 15:47:53 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:09:39 2008 -0300"
      },
      "message": "V4L/DVB (7568): Support for DVB-S demod PN1010 (clone of S5H1420) added\n\nThis device is a clone of the PN1010 used by SkyStar2 rev2.7 .\n\nThis patch adds support for the flexcop-device and makes the driver look a little bit nicer.\n\nIt needs to be checked whether the driver is still ok for the budget-cards.\n\nSigned-off-by: Patrick Boettcher \u003cpb@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "78e92006f410a4044f8c1760c25ac9d11d259aa2",
      "tree": "293de8abe261420df2db5e12936ec2721ea52c7c",
      "parents": [
        "9950c1b5b4b86d4aae12853c2f0a0ef11d976764"
      ],
      "author": {
        "name": "Janne Grunau",
        "email": "janne-dvb@grunau.be",
        "time": "Wed Apr 09 19:13:13 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:08:00 2008 -0300"
      },
      "message": "V4L/DVB (7538): Adds selectable adapter numbers as per module option\n\nThe adapter_nr module options can be used to allocate static adapter\nnumbers on a driver level. It avoids problems with changing DVB apapter\nnumbers after warm/cold boot or device unplugging and repluging.\n\nEach driver holds DVB_MAX_ADAPTER long array of the preferred order of\nadapter numbers.\n\noptions dvb-usb-dib0700 adapter_nr\u003d7,6,5,4,3,2,1,0 would result in a\nreversed allocation of adapter numbers.\n\nWith adapter_nr\u003d2,5 it tries first to get adapter number 2 and 5. If\nboth are already in use it will allocate the lowest free adapter number.\n\nSigned-off-by: Janne Grunau \u003cjanne-dvb@grunau.be\u003e\nAcked-by: Hermann Pitton \u003chermann.pitton@arcor.de\u003e\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "faea4d2ab2d4710f87739fd53b5c13ca7a7d34aa",
      "tree": "f46cd1ebdef8e80b074697d2b987673802c23a1a",
      "parents": [
        "c4e3bcb688dd561ae219a957e0d924f718335cab"
      ],
      "author": {
        "name": "Oliver Endriss",
        "email": "o.endriss@gmx.de",
        "time": "Wed Apr 09 17:49:55 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:59 2008 -0300"
      },
      "message": "V4L/DVB (7532): budget: Add support for Fujitsu Siemens DVB-T Activy Budget\n\nImplement support for Fujitsu Siemens DVB-T Activy Budget, sub-system id 0x1131:0x5f61.\n\nSigned-off-by: Oliver Endriss \u003co.endriss@gmx.de\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "c4e3bcb688dd561ae219a957e0d924f718335cab",
      "tree": "ddf9efecfb8bc1e9edc419828e97908f848865ee",
      "parents": [
        "8727073beff795ec0c9cb18833431d0b606f8264"
      ],
      "author": {
        "name": "Christoph Pfister",
        "email": "pfister@linuxtv.org",
        "time": "Wed Apr 09 17:37:36 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:59 2008 -0300"
      },
      "message": "V4L/DVB (7531): budget-av: Fix CI interface on (some) KNC1 DVBS cards\n\nQuoting the commit introducing reinitialise_demod (3984 / by adq):\n\"These cards [KNC1 DVBT and DVBC] need special handling for CI - reinitialising the frontend\ndevice when the CI module is reset.\"\nApparently my 1894:0010 also needs that fix, because once you initialise CI/CAM you lose lock.\n\nSigned-off-by: Christoph Pfister \u003cpfister@linuxtv.org\u003e\nSigned-off-by: Oliver Endriss \u003co.endriss@gmx.de\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "8727073beff795ec0c9cb18833431d0b606f8264",
      "tree": "a94b409cf78e365f853d0e387a0090c4fb59f463",
      "parents": [
        "d5a50e498603f5fa78e0373c389e2d2c3c13d709"
      ],
      "author": {
        "name": "Christoph Pfister",
        "email": "pfister@linuxtv.org",
        "time": "Wed Apr 09 17:34:09 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:59 2008 -0300"
      },
      "message": "V4L/DVB (7530): budget-av: Fix support for certain cams\n\nThe current ci implementation doesn\u0027t accept 0xff when reading data bytes (address \u003d\u003d 0),\nthus breaks cams which report a buffer size of 0x--ff like my orion one.\nRemove the 0xff check altogether, because validation is really the job of a higher layer.\n\nSigned-off-by: Christoph Pfister \u003cpfister@linuxtv.org\u003e\nSigned-off-by: Oliver Endriss \u003co.endriss@gmx.de\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "e9815ceea9733dfb236629f5b72f2e6486f66242",
      "tree": "89259703ae56171bee8790ff888d3c68f145e5c1",
      "parents": [
        "fb9393b519fb27714d14625bc3042b669933e81a"
      ],
      "author": {
        "name": "Harvey Harrison",
        "email": "harvey.harrison@gmail.com",
        "time": "Tue Apr 08 23:20:00 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:58 2008 -0300"
      },
      "message": "V4L/DVB (7517): media/dvb/ttusb-dec replace remaining __FUNCTION__ occurrences\n\n__FUNCTION__ is gcc-specific, use __func__\n\nSigned-off-by: Harvey Harrison \u003charvey.harrison@gmail.com\u003e\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "fb9393b519fb27714d14625bc3042b669933e81a",
      "tree": "ae51fab5e721014c873771bd8f407da4b13f8c9e",
      "parents": [
        "3ca7fc84e37c5cf446fe4137f885f74e71373d7f"
      ],
      "author": {
        "name": "Harvey Harrison",
        "email": "harvey.harrison@gmail.com",
        "time": "Tue Apr 08 23:20:00 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:58 2008 -0300"
      },
      "message": "V4L/DVB (7516): media/dvb/ttusb-budget replace remaining __FUNCTION__ occurrences\n\n__FUNCTION__ is gcc-specific, use __func__\n\nSigned-off-by: Harvey Harrison \u003charvey.harrison@gmail.com\u003e\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "3ca7fc84e37c5cf446fe4137f885f74e71373d7f",
      "tree": "236bae57740ccd8308c740fc635a43c84b136b10",
      "parents": [
        "271ddbf702c3a4e6b18f6464180eda0f62efd9a5"
      ],
      "author": {
        "name": "Harvey Harrison",
        "email": "harvey.harrison@gmail.com",
        "time": "Tue Apr 08 23:20:00 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:58 2008 -0300"
      },
      "message": "V4L/DVB (7515): media/dvb/ttpci replace remaining __FUNCTION__ occurrences\n\n__FUNCTION__ is gcc-specific, use __func__\n\nSigned-off-by: Harvey Harrison \u003charvey.harrison@gmail.com\u003e\nAcked-by: Oliver Endriss \u003co.endriss@gmx.de\u003e\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "271ddbf702c3a4e6b18f6464180eda0f62efd9a5",
      "tree": "37a384a4ce6216c694ee0d86ffc89d4aa56944e1",
      "parents": [
        "708bebdd3922c6f346b8540f93c73f006d2b947b"
      ],
      "author": {
        "name": "Harvey Harrison",
        "email": "harvey.harrison@gmail.com",
        "time": "Tue Apr 08 23:20:00 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:58 2008 -0300"
      },
      "message": "V4L/DVB (7514): media/dvb/frontends replace remaining __FUNCTION__ occurrences\n\n__FUNCTION__ is gcc-specific, use __func__\n\nSigned-off-by: Harvey Harrison \u003charvey.harrison@gmail.com\u003e\nAcked-by: Oliver Endriss \u003co.endriss@gmx.de\u003e\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "708bebdd3922c6f346b8540f93c73f006d2b947b",
      "tree": "1550b3d7bfc4991e140e040b41d60f240d5a39f8",
      "parents": [
        "46b4f7c176a2dd4c60ddb7c80bd09ea2f3220674"
      ],
      "author": {
        "name": "Harvey Harrison",
        "email": "harvey.harrison@gmail.com",
        "time": "Tue Apr 08 23:20:00 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:58 2008 -0300"
      },
      "message": "V4L/DVB (7513): media/dvb/dvb-usb replace remaining __FUNCTION__ occurrences\n\n__FUNCTION__ is gcc-specific, use __func__\n\nSigned-off-by: Harvey Harrison \u003charvey.harrison@gmail.com\u003e\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "46b4f7c176a2dd4c60ddb7c80bd09ea2f3220674",
      "tree": "0fd25c1ebcc050ccea9553afa645da293f31110e",
      "parents": [
        "0592e8d3485c4976eaa6db8084e00b0132a34d7e"
      ],
      "author": {
        "name": "Harvey Harrison",
        "email": "harvey.harrison@gmail.com",
        "time": "Tue Apr 08 23:20:00 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:58 2008 -0300"
      },
      "message": "V4L/DVB (7512): media/dvb/dvb-core replace remaining __FUNCTION__ occurrences\n\n__FUNCTION__ is gcc-specific, use __func__\n\nSigned-off-by: Harvey Harrison \u003charvey.harrison@gmail.com\u003e\nAcked-by: Oliver Endriss \u003co.endriss@gmx.de\u003e\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "0592e8d3485c4976eaa6db8084e00b0132a34d7e",
      "tree": "53c1d67139f50b7170003c524d3b3ba35257a636",
      "parents": [
        "b2e62e7cdb8022087ae2def06f8023c9f5d3b411"
      ],
      "author": {
        "name": "Harvey Harrison",
        "email": "harvey.harrison@gmail.com",
        "time": "Tue Apr 08 23:20:00 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:58 2008 -0300"
      },
      "message": "V4L/DVB (7511): media/dvb/cinergyT2 replace remaining __FUNCTION__ occurrences\n\n__FUNCTION__ is gcc-specific, use __func__\n\nSigned-off-by: Harvey Harrison \u003charvey.harrison@gmail.com\u003e\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "b2e62e7cdb8022087ae2def06f8023c9f5d3b411",
      "tree": "28b8f07e0f4c42050cc878cfa60ccbb987ca4d0e",
      "parents": [
        "7bca4498f6ec331c2ace79824da8687ad35cd65c"
      ],
      "author": {
        "name": "Harvey Harrison",
        "email": "harvey.harrison@gmail.com",
        "time": "Tue Apr 08 23:20:00 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:58 2008 -0300"
      },
      "message": "V4L/DVB (7510): media/dvb/bt8xx replace remaining __FUNCTION__ occurrences\n\n__FUNCTION__ is gcc-specific, use __func__\n\nSigned-off-by: Harvey Harrison \u003charvey.harrison@gmail.com\u003e\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "7bca4498f6ec331c2ace79824da8687ad35cd65c",
      "tree": "405ab5f79ba2a5f8246babb62e11392e882f34f9",
      "parents": [
        "536a0b119527c8af8e3a70b18f7640a21039a0a7"
      ],
      "author": {
        "name": "Harvey Harrison",
        "email": "harvey.harrison@gmail.com",
        "time": "Tue Apr 08 23:20:00 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:58 2008 -0300"
      },
      "message": "V4L/DVB (7509): media/dvb/b2c2 replace remaining __FUNCTION__ occurrences\n\n__FUNCTION__ is gcc-specific, use __func__\n\nSigned-off-by: Harvey Harrison \u003charvey.harrison@gmail.com\u003e\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "c735372f5df2dc7b67080881bdc613d199173abf",
      "tree": "ecf2f3c0343acfe33a40b805b14a5366ff65c2f5",
      "parents": [
        "762250f884cb927c7f1da4e24052ec43e000d53f"
      ],
      "author": {
        "name": "Michael Krufky",
        "email": "mkrufky@linuxtv.org",
        "time": "Sun Mar 30 19:40:20 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:57 2008 -0300"
      },
      "message": "V4L/DVB (7481): tda18271: fix standard map debug\n\nShow IF level and rf agc top settings in standard map dumps.\n\nDump standard map during attach if DBG_MAP or DBG_ADV is set.\n\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "5da4e2c645e4324f63fd87a0f93e3d0ad6619798",
      "tree": "fd9f59e11bc72bfdca449d5d3137f90a377dceb5",
      "parents": [
        "dc88807ed61ed0fc0d57bd80a92508b9de638f5d"
      ],
      "author": {
        "name": "Darryl Green",
        "email": "darryl.green@aanet.com.au",
        "time": "Sat Mar 29 21:47:43 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:57 2008 -0300"
      },
      "message": "V4L/DVB (7476): New USB ID for Leadtek DVB-T USB\n\nDetect Leadtek Winfast USB DTV Dongle with ID of 0x6f01\n\nSigned-off-by: Darryl Green \u003cdarryl.green@aanet.com.au\u003e\nSigned-off-by: Patrick Boettcher \u003cpb@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "dc88807ed61ed0fc0d57bd80a92508b9de638f5d",
      "tree": "4155a0c5c22fa68373e035e9b2e0b7fedd39f3da",
      "parents": [
        "58e6f95e613b37372a58fd504646ae1b1964c2ed"
      ],
      "author": {
        "name": "Alexander Simon",
        "email": "alexander.simon@informatik.tu-muenchen.de",
        "time": "Sat Mar 29 21:37:54 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:56 2008 -0300"
      },
      "message": "V4L/DVB (7475): Added support for Terratec Cinergy T USB XXS\n\nAlexander Simon found out that the Terratec Cinergy T USB XXS is just a clone of another DiB7070P-based device.\n\nSigned-off-by: Patrick Boettcher \u003cpb@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "58e6f95e613b37372a58fd504646ae1b1964c2ed",
      "tree": "473c1ecb2fab26607bbd44b60e34e02a7493d104",
      "parents": [
        "6ca8f0b97473dcef3a754bab5239dcfcdd00b244"
      ],
      "author": {
        "name": "Patrick Boettcher",
        "email": "pb@linuxtv.org",
        "time": "Sat Mar 29 21:37:01 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:56 2008 -0300"
      },
      "message": "V4L/DVB (7474):  support key repeat with dib0700 ir receiver\n\nThis patch enables support for repeating last event when a key is holded\ndown with dib0700 devices. It works with rc5 and nec remotes.\nIt also fixes an annoying bug that floods kernel log with \"Unknown key\"\nmessages after each keypress. This happened because the driver was not\nresetting infrared register after each poll so it kept polling last key\neven if nothing was being pressed. Fixing this, (calling rc_setup after\neach poll), permits to implement key repeat.\n\nSigned-off-by: Filippo Argiolas \u003cfilippo.argiolas at gmail.com\u003e\nSigned-off-by: Patrick Boettcher \u003cpb@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "6ca8f0b97473dcef3a754bab5239dcfcdd00b244",
      "tree": "61d03622007db66066ad78958a4e7817faea09c4",
      "parents": [
        "8c899bce2a5540b19e86dd3b355e5699657da144"
      ],
      "author": {
        "name": "Albert Comerma",
        "email": "albert.comerma@gmail.com",
        "time": "Sat Mar 29 21:35:57 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:56 2008 -0300"
      },
      "message": "V4L/DVB (7473): PATCH for various Dibcom based devices\n\nThis patch introduces support for dvb-t for the following DiBcom based cards:\n\n- Terratec Cinergy HT USB XE (USB-ID: 0ccd:0058)\n- Terratec Cinergy HT Express (USB-ID: 0ccd:0060)\n- Pinnacle 320CX (USB-ID: 2304:022e)\n- Pinnacle PCTV72e (USB-ID: 2304:0236)\n- Pinnacle PCTV73e (USB-ID: 2304:0237)\n- Yuan EC372S (USB-ID: 1164:1edc)\n\nSigned-off-by: Hans-Frieder Vogt \u003chfvogt@gmx.net\u003e\nSigned-off-by: Felix Apitzsch \u003cF.Apitzsch@soz.uni-frankfurt.de\u003e\nSigned-off-by: Antti Palosaari \u003ccrope@iki.fi\u003e\nSigned-off-by: Albert Comerma \u003calbert.comerma@gmail.com\u003e\nSigned-off-by: Patrick Boettcher \u003cpb@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "8c899bce2a5540b19e86dd3b355e5699657da144",
      "tree": "c550c507134b80de8c8895825a98eadb7f02a025",
      "parents": [
        "ca06fa79a5babc21f0240979e5b1dd34dcc3c6e4"
      ],
      "author": {
        "name": "Andre Weidemann",
        "email": "Andre.Weidemann@web.de",
        "time": "Sat Mar 29 21:30:49 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:56 2008 -0300"
      },
      "message": "V4L/DVB (7472):  reworked patch to support TT connect S-2400\n\nAdded support for Technotrend connect S-2400.\n\nSigned-off-by: Andre Weidemann \u003cAndre.Weidemann@web.de\u003e\nSigned-off-by: Patrick Boettcher \u003cpb@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "ca06fa79a5babc21f0240979e5b1dd34dcc3c6e4",
      "tree": "363a53a37c8ac6dd30b11ca2ce825a37fd40de15",
      "parents": [
        "6394cf53abc0b3a2db9e8b947ef5c77b16861ec8"
      ],
      "author": {
        "name": "Patrick Boettcher",
        "email": "pb@linuxtv.org",
        "time": "Sat Mar 29 21:01:12 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:56 2008 -0300"
      },
      "message": "V4L/DVB (7470): CX24123: preparing support for CX24113 tuner\n\nTo support a new device based on CX24123 (using the CX24113-tuner) the following was done:\n\n- added two parameters to de-select the internal PLL-driver (for CX24108) and a AGC-function callback.\n- added a virtual i2c-adapter which allow simple access behind the i2c-gate\n- cleanup up some code\n\nSigned-off-by: Patrick Boettcher \u003cpb@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "6394cf53abc0b3a2db9e8b947ef5c77b16861ec8",
      "tree": "6d442ab2e89d17ef963ee840ba50440e225f30cb",
      "parents": [
        "0b5afdd2ea5f52d260d1e42d43fb0fa09ec0da2f"
      ],
      "author": {
        "name": "Patrick Boettcher",
        "email": "pb@linuxtv.org",
        "time": "Sat Mar 29 20:49:57 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:56 2008 -0300"
      },
      "message": "V4L/DVB (7469): Preparation for supporting new devices, cleanup and saneness\n\nTo prepare the support for new device to the flexcop-family some preparation and cleanups was done + some saneness:\n\n- created an i2c-adapter for each i2c-port available. Easier usage for devices with several device on different i2c-busses\n- initialize i2c before doing the eeprom read\n- changed the way to attach the different frontends, easier to read now\n- enabled support for i2c-devices having no register address (1-byte access)\n\nSigned-off-by: Patrick Boettcher \u003cpb@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "2c4963d4fb6103c0589db411fccf5e4f8531f173",
      "tree": "281e54b76b962d6d98f87e8ab169e4aec9d987c6",
      "parents": [
        "a03402d8ad1638a0a88c5091a189be146c1ee261"
      ],
      "author": {
        "name": "Michael Krufky",
        "email": "mkrufky@linuxtv.org",
        "time": "Tue Apr 22 14:46:25 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:55 2008 -0300"
      },
      "message": "V4L/DVB (7441): kconfig fixes for tuner-simple\n\nUpdate Kconfig for the hybrid devices recently converted\nto use tuner-simple rather than dvb-pll.\n\ndvb-bt8xx no longer uses dvb-pll at all, so remove all\nreferences to dvb-pll within that driver.\n\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "a03402d8ad1638a0a88c5091a189be146c1ee261",
      "tree": "b63cac16fd5a00ba512df6fdf1c27c5dd113f937",
      "parents": [
        "5c913c0571034fc08d9a27f4aa3175142352acf6"
      ],
      "author": {
        "name": "Michael Krufky",
        "email": "mkrufky@linuxtv.org",
        "time": "Tue Apr 22 14:46:25 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:55 2008 -0300"
      },
      "message": "V4L/DVB (7440): dvb-bt8xx: fix build error\n\nFix the following build error:\n\nIn file included from dvb-bt8xx.c:35:\ndvb-bt8xx.h:42:26: error: tuner-simple.h: No such file or directory\ndvb-bt8xx.c: In function \u0027frontend_init\u0027:\ndvb-bt8xx.c:612: error: \u0027simple_tuner_attach\u0027 undeclared (first use in this function)\ndvb-bt8xx.c:612: error: (Each undeclared identifier is reported only once\ndvb-bt8xx.c:612: error: for each function it appears in.)\ndvb-bt8xx.c:612: warning: type defaults to \u0027int\u0027 in declaration of \u0027__a\u0027\ndvb-bt8xx.c:612: warning: type defaults to \u0027int\u0027 in declaration of \u0027type name\u0027\ndvb-bt8xx.c:612: warning: cast from pointer to integer of different size\ndvb-bt8xx.c:612: warning: type defaults to \u0027int\u0027 in declaration of \u0027type name\u0027\ndvb-bt8xx.c:612: warning: cast from pointer to integer of different size\ndvb-bt8xx.c:612: error: called object \u0027__a\u0027 is not a function\ndvb-bt8xx.c:696: warning: type defaults to \u0027int\u0027 in declaration of \u0027__a\u0027\ndvb-bt8xx.c:696: warning: type defaults to \u0027int\u0027 in declaration of \u0027type name\u0027\ndvb-bt8xx.c:696: warning: cast from pointer to integer of different size\ndvb-bt8xx.c:696: warning: type defaults to \u0027int\u0027 in declaration of \u0027type name\u0027\ndvb-bt8xx.c:696: warning: cast from pointer to integer of different size\ndvb-bt8xx.c:696: error: called object \u0027__a\u0027 is not a function\n\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "5ec96b0c80eced33e7bf69a2d29c044d6dbe9bf5",
      "tree": "7eb7bdd650ea6661a85507425ea6c51e3512144a",
      "parents": [
        "868f5ccd64113d070f09ecf2827a69b81c95ed9d"
      ],
      "author": {
        "name": "Michael Krufky",
        "email": "mkrufky@linuxtv.org",
        "time": "Tue Apr 22 14:46:23 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:55 2008 -0300"
      },
      "message": "V4L/DVB (7437): tda18271: increment module version minor\n\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "868f5ccd64113d070f09ecf2827a69b81c95ed9d",
      "tree": "4c80f304e6cee1cccbb7e3606fab029923bff558",
      "parents": [
        "4efb0ca5d00f2c7a8bf9632556a4b4330cf409c5"
      ],
      "author": {
        "name": "Michael Krufky",
        "email": "mkrufky@linuxtv.org",
        "time": "Tue Apr 22 14:46:23 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:55 2008 -0300"
      },
      "message": "V4L/DVB (7436): tda18271: add basic support for slave tuner configurations\n\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "4efb0ca5d00f2c7a8bf9632556a4b4330cf409c5",
      "tree": "4ce1c38c66a64c590ef06403e6a38e2be7175772",
      "parents": [
        "40194b2b1bdd01358c1e9b5a9b8dd78390cc05f7"
      ],
      "author": {
        "name": "Michael Krufky",
        "email": "mkrufky@linuxtv.org",
        "time": "Tue Apr 22 14:46:23 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:55 2008 -0300"
      },
      "message": "V4L/DVB (7435): tda18271: add function tda18271_charge_pump_source\n\nForce the main pll charge pump or cal pll charge pump to source current\nto the main pll loop filter or cal pll loop filter, respectively.\n\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "40194b2b1bdd01358c1e9b5a9b8dd78390cc05f7",
      "tree": "e1694da299044bb296ef998baf2875444f89f4af",
      "parents": [
        "e7809a07663f868f596b5f08a63db9a32240502c"
      ],
      "author": {
        "name": "Michael Krufky",
        "email": "mkrufky@linuxtv.org",
        "time": "Tue Apr 22 14:46:22 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:55 2008 -0300"
      },
      "message": "V4L/DVB (7434): tda18271: set rfagc modes during channel configuration\n\nSet rfagc to high speed mode before setting the pll.\nSet rfagc to normal speed mode at the end of the function.\n\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "e7809a07663f868f596b5f08a63db9a32240502c",
      "tree": "6951b01f8758c81b6f2ce081f6710463a1954602",
      "parents": [
        "c0dc0c1122b585193dd6650c749e919542dd3e23"
      ],
      "author": {
        "name": "Michael Krufky",
        "email": "mkrufky@linuxtv.org",
        "time": "Tue Apr 22 14:46:22 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:55 2008 -0300"
      },
      "message": "V4L/DVB (7433): tda18271: fix comparison bug in tda18271_powerscan\n\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "c0dc0c1122b585193dd6650c749e919542dd3e23",
      "tree": "de308e67ef9e2ea58ae9bba0fae1cd4292cf4855",
      "parents": [
        "14c74b23b6b5a8259c25c8f825e3036f595518d0"
      ],
      "author": {
        "name": "Michael Krufky",
        "email": "mkrufky@linuxtv.org",
        "time": "Tue Apr 22 14:46:22 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:55 2008 -0300"
      },
      "message": "V4L/DVB (7432): tda18271: allow device-specific configuration of rf agc top\n\nallow device-specific configuration of rf agc rf top and if top\n\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "14c74b23b6b5a8259c25c8f825e3036f595518d0",
      "tree": "b5484ee371548bf849c490040dffadd30be7a80b",
      "parents": [
        "ae07d042f626caa13d5a8a15ac7297b2873f7622"
      ],
      "author": {
        "name": "Michael Krufky",
        "email": "mkrufky@linuxtv.org",
        "time": "Tue Apr 22 14:46:21 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:54 2008 -0300"
      },
      "message": "V4L/DVB (7431): tda18271: allow device-specific configuration of IF level\n\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "ae07d042f626caa13d5a8a15ac7297b2873f7622",
      "tree": "ebde46ae8f715502d96ce1173299fa6ff94be2c2",
      "parents": [
        "e83ebb64eff4636a5eab06a6cc493ab51e900ed0"
      ],
      "author": {
        "name": "Michael Krufky",
        "email": "mkrufky@linuxtv.org",
        "time": "Tue Apr 22 14:46:21 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:54 2008 -0300"
      },
      "message": "V4L/DVB (7430): tda18271: fix typo in tda18271_calibrate_rf\n\nThe internal calibration signal must be set on the cal pll.\n\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "e83ebb64eff4636a5eab06a6cc493ab51e900ed0",
      "tree": "fb7fcfd14415a9ba8ad1fd821afdec497cd13ac8",
      "parents": [
        "0c3ea9941c4957e4a9c229878bd13a39ac4d0e4b"
      ],
      "author": {
        "name": "Michael Krufky",
        "email": "mkrufky@linuxtv.org",
        "time": "Tue Apr 22 14:46:21 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:54 2008 -0300"
      },
      "message": "V4L/DVB (7429): tda18271: write EP3 thru MD3 for image rejection low band initialization\n\nBoth the tda18271 c1 and c2 parts only need EP3 through MD3 to be written for\nthe image rejection calibration\u0027s low band initialization.\n\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "0c3ea9941c4957e4a9c229878bd13a39ac4d0e4b",
      "tree": "144ebb7ad94e1cb6b18c86b263497ea906ff7927",
      "parents": [
        "b6fd549e50e11d91057dc367fa8f9d1352b145be"
      ],
      "author": {
        "name": "Michael Krufky",
        "email": "mkrufky@linuxtv.org",
        "time": "Tue Apr 22 14:46:20 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:54 2008 -0300"
      },
      "message": "V4L/DVB (7427): dvb-pll: remove rf input module options\n\nThe ability to select RF input was a supported feature only available on\nPhilips TUV1236d and Philips FCV1236d.\n\nThis feature, along with support for the tuners that used it,\nwas moved into the tuner-simple module.\n\nThis can now be removed from dvb-pll.\n\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "b6fd549e50e11d91057dc367fa8f9d1352b145be",
      "tree": "d9341f5ffedc48f3cc171c21bbe110d715367058",
      "parents": [
        "5e8556de79c509ea2ff3c3be19d3930f9ab5af54"
      ],
      "author": {
        "name": "Michael Krufky",
        "email": "mkrufky@linuxtv.org",
        "time": "Tue Apr 22 14:46:20 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:54 2008 -0300"
      },
      "message": "V4L/DVB (7426): dvb-pll: renumber remaining description id\u0027s\n\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "5e8556de79c509ea2ff3c3be19d3930f9ab5af54",
      "tree": "44c7d2fbb7fdb4df948e8e4064050d1619dc9ce6",
      "parents": [
        "b7f81b2058625b6fe90c9265aabbf0d3bdc15874"
      ],
      "author": {
        "name": "Michael Krufky",
        "email": "mkrufky@linuxtv.org",
        "time": "Tue Apr 22 14:46:20 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:54 2008 -0300"
      },
      "message": "V4L/DVB (7425): dvb-pll: remove dead code\n\nremove #if 0\u0027d support for:\n\nPhilips TUV1236D\nPhilips TD1316\nPhilips FMD1216ME\nLG TDVS-H06xF\nPhilips FCV1236D\nThomson FE6600\nMicrotune 4042 FI5\nThomson dtt761x\n\nSupport for these tuners has been moved into the \u0027tuner-simple\u0027 module.\n\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "b7f81b2058625b6fe90c9265aabbf0d3bdc15874",
      "tree": "e64ea7e6405bfb583bdd13ccd6e3040d912bdf7b",
      "parents": [
        "ad561caafaa02b2e1dfe25f6bae03806051992eb"
      ],
      "author": {
        "name": "Michael Krufky",
        "email": "mkrufky@linuxtv.org",
        "time": "Tue Apr 22 14:46:20 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:54 2008 -0300"
      },
      "message": "V4L/DVB (7424): dvb-pll: remove support for Philips TUV1236D\n\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "ad561caafaa02b2e1dfe25f6bae03806051992eb",
      "tree": "7130e145ddb432914771afbae73eec539acbf5a6",
      "parents": [
        "92d1069f3cfbe4da07d9cf5b1cb29930e6277def"
      ],
      "author": {
        "name": "Michael Krufky",
        "email": "mkrufky@linuxtv.org",
        "time": "Tue Apr 22 14:46:19 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:54 2008 -0300"
      },
      "message": "V4L/DVB (7423): dvb-pll: remove support for Philips TD1316\n\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "92d1069f3cfbe4da07d9cf5b1cb29930e6277def",
      "tree": "f4c27a674a38b1e5a96942be443627f343116477",
      "parents": [
        "75a791925da909d489ef323e3a540ad1f1bca54f"
      ],
      "author": {
        "name": "Michael Krufky",
        "email": "mkrufky@linuxtv.org",
        "time": "Tue Apr 22 14:46:19 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:54 2008 -0300"
      },
      "message": "V4L/DVB (7422): dvb-pll: remove support for Philips FMD1216ME\n\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "75a791925da909d489ef323e3a540ad1f1bca54f",
      "tree": "3dbaec323370f9d3f61169d212c271b55fd01666",
      "parents": [
        "89418750f71b5b9bed7bd2bd8572fc54b049e1d5"
      ],
      "author": {
        "name": "Michael Krufky",
        "email": "mkrufky@linuxtv.org",
        "time": "Tue Apr 22 14:46:19 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:54 2008 -0300"
      },
      "message": "V4L/DVB (7421): dvb-pll: remove support for LG TDVS-H06xF\n\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "89418750f71b5b9bed7bd2bd8572fc54b049e1d5",
      "tree": "b9a2ae31ae506795aefaabb3d3a54b6234b3af11",
      "parents": [
        "7b844d75dcbf48f22838df41b47d7b387533170f"
      ],
      "author": {
        "name": "Michael Krufky",
        "email": "mkrufky@linuxtv.org",
        "time": "Tue Apr 22 14:46:18 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:54 2008 -0300"
      },
      "message": "V4L/DVB (7420): dvb-pll: remove support for Philips FCV1236D\n\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "7b844d75dcbf48f22838df41b47d7b387533170f",
      "tree": "2cffd04b0a2050eeb80b5665fe9be5e46f04ee82",
      "parents": [
        "53f2dd33147c3040e56d4d7a99a876e07b2bc6ac"
      ],
      "author": {
        "name": "Michael Krufky",
        "email": "mkrufky@linuxtv.org",
        "time": "Tue Apr 22 14:46:18 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:54 2008 -0300"
      },
      "message": "V4L/DVB (7419): dvb-pll: remove support for Thomson FE6600\n\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "53f2dd33147c3040e56d4d7a99a876e07b2bc6ac",
      "tree": "bc78117aa5cbbb8628f7e4349f2c530fcebf9cd8",
      "parents": [
        "15b3feb73556208aec71569a6ccf9d8147ae6147"
      ],
      "author": {
        "name": "Michael Krufky",
        "email": "mkrufky@linuxtv.org",
        "time": "Tue Apr 22 14:46:17 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:54 2008 -0300"
      },
      "message": "V4L/DVB (7418): dvb-pll: remove support for Microtune 4042 FI5\n\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "15b3feb73556208aec71569a6ccf9d8147ae6147",
      "tree": "0c655c5fceaefbfb491234e95887f2e0c48e9900",
      "parents": [
        "24d3980c3a4e073ade5e053d79864bf906c1e481"
      ],
      "author": {
        "name": "Michael Krufky",
        "email": "mkrufky@linuxtv.org",
        "time": "Tue Apr 22 14:46:17 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:54 2008 -0300"
      },
      "message": "V4L/DVB (7417): dvb-pll: remove support for Thomson dtt761x\n\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "24d3980c3a4e073ade5e053d79864bf906c1e481",
      "tree": "ddb9e81512b202c202ad5b60874dbfd48314c280",
      "parents": [
        "62ff817a04a5a08074c0391bdbf7bab48bdaa80e"
      ],
      "author": {
        "name": "Michael Krufky",
        "email": "mkrufky@linuxtv.org",
        "time": "Tue Apr 22 14:46:17 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:54 2008 -0300"
      },
      "message": "V4L/DVB (7416): dvb-pll: remove support for Thomson dtt7610\n\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "cb89cd332d2f160623c92473945f729d43a70af0",
      "tree": "9dc092202c134dc72887b5e5f2a44ca85bfad644",
      "parents": [
        "827855d39761889aecc7c29385d9c4989b43d01d"
      ],
      "author": {
        "name": "Michael Krufky",
        "email": "mkrufky@linuxtv.org",
        "time": "Tue Apr 22 14:46:16 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:53 2008 -0300"
      },
      "message": "V4L/DVB (7413): use tuner-simple for Philips FMD1216ME digital tuning support\n\nConvert cxusb, cx88-dvb and saa7134-dvb to use tuner-simple instead of\ndvb-pll for Philips FMD1216ME\n\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "827855d39761889aecc7c29385d9c4989b43d01d",
      "tree": "062925b9bdcd4602b66bd3f43236c492dbb7c0ca",
      "parents": [
        "967be9a9cd2de3f87dbf960620860143a50c1b64"
      ],
      "author": {
        "name": "Michael Krufky",
        "email": "mkrufky@linuxtv.org",
        "time": "Tue Apr 22 14:46:16 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:53 2008 -0300"
      },
      "message": "V4L/DVB (7412): use tuner-simple for LG TDVS-H06xF digital tuning support\n\nConvert cx88-dvb, dvb-bt8xx, b2c2-flexcop, cxusb and cx23885 to use\ntuner-simple instead of dvb-pll for LG TDVS-H06xF\n\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "967be9a9cd2de3f87dbf960620860143a50c1b64",
      "tree": "57549d397b4f22d009e170e9464feda6e5b5807a",
      "parents": [
        "0efad8127ac4b32af780d722258b42cfae02cdf2"
      ],
      "author": {
        "name": "Michael Krufky",
        "email": "mkrufky@linuxtv.org",
        "time": "Tue Apr 22 14:46:13 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:53 2008 -0300"
      },
      "message": "V4L/DVB (7411): use tuner-simple for Philips FCV1236D digital tuning support\n\nConvert dvb-bt8xx to use tuner-simple instead of dvb-pll for Philips FCV1236D\n\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "b412ba781adcb484e8d9b19b30ae1d3a6b8c7d29",
      "tree": "02997fa52c69c3f63079e01d22ba53969e214d54",
      "parents": [
        "0be51b4671b3ae3ae544a0bb3d15b55478b55e72"
      ],
      "author": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Tue Apr 22 14:46:11 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:53 2008 -0300"
      },
      "message": "V4L/DVB (7399): Removes video_dev from tuner-xc2028 config struct\n\nThe video_dev parameter, on tuner-xc2028 were used to pass i2c private data to\ntuner_callback. Since the driver already have a pointer to i2c_adap-\u003ealgo_data,\nuses this instead.\n\nThis parameter were used also as a magic number to idenfity if two drivers are\ntrying to register the same xc3028 tuner. This occurs with boards with DVB\nsupport, where both DVB and V4L drivers will share the same tuner.\n\nInstead of using the algo_data as a private number, after this patch, the\ndriver will use i2c_adap-\u003edev, with seems more consistent.\n\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "7bff4b4d3ad2b9ff42b4087f409076035af1d165",
      "tree": "cfa75f91fbd30b8b36f70d7056639ee031d2a7ed",
      "parents": [
        "5823b3a63c7661272ea7fef7635955e2a50d17eb"
      ],
      "author": {
        "name": "Hartmut Hackmann",
        "email": "hartmut.hackmann@t-online.de",
        "time": "Tue Apr 22 14:46:08 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:52 2008 -0300"
      },
      "message": "V4L/DVB (7393): tda827x: fixed support of tuners with LNA\n\nTuner refactoring broke support of tuners with LNA configurations 1 and 2\nfor both, analog TV and DVB-T.\nAdditionally, this patch initializes the saa713x gpios defined by the gpiomask\nat driver init to avoid undefined stated at dvb.\n\nSigned-off-by: Hartmut Hackmann \u003chartmut.hackmann@t-online.de\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "7f7203df3f7d056e5f3c4419c6ab3835f44b288c",
      "tree": "56716e59f395057cdffb80769ff3f28f19a4a842",
      "parents": [
        "c293d0a72ecb9dd09037cdf4a9089e455404cf4a"
      ],
      "author": {
        "name": "Michael Krufky",
        "email": "mkrufky@linuxtv.org",
        "time": "Tue Apr 22 14:46:06 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:52 2008 -0300"
      },
      "message": "V4L/DVB (7385): tda18271: store agc_mode configuration independently of std_bits\n\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "c293d0a72ecb9dd09037cdf4a9089e455404cf4a",
      "tree": "829b7197ff957f3364831b5bd45c483c2148ff03",
      "parents": [
        "5555309c9adcf9bb7f6b449ef45b09d5c26ef4ae"
      ],
      "author": {
        "name": "Michael Krufky",
        "email": "mkrufky@linuxtv.org",
        "time": "Tue Apr 22 14:46:06 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:52 2008 -0300"
      },
      "message": "V4L/DVB (7384): tda18271: store FM_RFn setting in struct tda18271_std_map_item\n\nAll standard related configuration is stored within\nstruct tda18271_std_map_item.  Pass a pointer to this\nstructure rather than its individual members.\n\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "5555309c9adcf9bb7f6b449ef45b09d5c26ef4ae",
      "tree": "43cde0dd327dffe23bcbaf9612e64299566f7485",
      "parents": [
        "ab8b870e430d3e2cfb299f81e0ae0aef7fe5bfda"
      ],
      "author": {
        "name": "Michael Krufky",
        "email": "mkrufky@linuxtv.org",
        "time": "Tue Apr 22 14:46:06 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:52 2008 -0300"
      },
      "message": "V4L/DVB (7383): tda18271: add attach-time parameter to limit i2c transfer size\n\nAdd attach-time parameter, \"small_i2c\" to limit i2c transfer size to write\nat most 16 registers at a time during initialization.\n\nSigned-off-by: Michael Krufky \u003cmkrufky@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "4a24ce3a17ee713056db0a24cf558bd595211302",
      "tree": "0eeb14ce7a66a1c6a34fb353f3c7f1a63d9230d3",
      "parents": [
        "a9317abfba0850b006aed000e2acc4bee150410a"
      ],
      "author": {
        "name": "Andreas Oberritter",
        "email": "obi@linuxtv.org",
        "time": "Tue Apr 22 14:45:47 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:48 2008 -0300"
      },
      "message": "V4L/DVB (7329): add flag to allow software demux to recognize the output type\n\nPreviously, the macro DVR_FEED, which is used to recognize and filter\nout duplicate packets going to the DVR device, used the TS_PAYLOAD_ONLY\nflag to identify a packet\u0027s destination.\n\nThis kind of filtering was introduced by the following two changesets:\n\nNow, that it is possible to record TS PIDs using the demux device by\nsetting the output type to DMX_OUT_TSDEMUX_TAP, checking TS_PAYLOAD_ONLY\nis not sufficient anymore. Therefore another flag, TS_DEMUX, is added to\nspecify the output type of a feed.\n\nThis allows multiple clients to filter the same TS PID on a demux device\nsimultaneously.\n\nSigned-off-by: Andreas Oberritter \u003cobi@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "b01cd937895ad4114a07114cfb6b8b5d2be52241",
      "tree": "cf0046fa0228b07a214e2e601f9a4d1f61e7cc63",
      "parents": [
        "3c66e4e18b250f4524f24fd5b4ccdcd12bef9cc2"
      ],
      "author": {
        "name": "Peter Hartley",
        "email": "pdh@utter.chaos.org.uk",
        "time": "Tue Apr 22 14:45:36 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:46 2008 -0300"
      },
      "message": "V4L/DVB (7293): DMX_OUT_TSDEMUX_TAP: record two streams from same mux, resend\n\nCurrently (in linux-2.6.24, but linux-dvb hg looks similar), the\ndmx_output_t in the dmx_pes_filter_params decides two things: whether\noutput is sent to demux0 or dvr0 (in dmxdev.c:dvb_dmxdev_ts_callback),\n*and* whether to depacketise TS (in dmxdev.c:dvb_dmxdev_filter_start).\nAs it stands, those two things can\u0027t be set independently: output\ndestined for demux0 is depacketised, output for dvr0 isn\u0027t.\n\nThis is what you want for capturing multiple audio streams from the same\nmultiplex simultaneously: open demux0 several times and send\ndepacketised output there. And capturing a single video stream is fine\nnot what you want: you want multi-open (so demux0, not dvr0), but you\nwant the TS nature preserved (because that\u0027s what you want on output, as\nyou\u0027re going to re-multiplex it with the audio).\n\nAt least one existing solution -- GStreamer -- sends all its streams\nsimultaneously via dvr0 and demuxes again in userland, but it seems a\nbit of a shame to pick out all the PIDs in kernel, stick them back\ntogether in kernel, and send them to userland only to get unpicked\nagain, when the alternative is such a small API addition.\n\nThe attached patch adds a new value for dmx_output_t:\nDMX_OUT_TSDEMUX_TAP, which sends TS to the demux0 device. With this\npatch and a dvb-usb-dib0700 (and UK Freeview from Sandy Heath), I can\nsuccessfully capture an audio/video PID pair into a TS file that mplayer\ncan play back.\n\nSigned-off-by: Peter Hartley \u003cpdh@utter.chaos.org.uk\u003e\nAcked-by: Andreas Oberritter \u003cobi@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "1744a7770c27a709c464ce51617c2b31721db165",
      "tree": "a479cc1eaffd88c05658d71fd91113c679c91025",
      "parents": [
        "b573ea0a936eb2a7c6c57cdacb0d02bd358495a7"
      ],
      "author": {
        "name": "Harvey Harrison",
        "email": "harvey.harrison@gmail.com",
        "time": "Tue Apr 22 14:45:32 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:45 2008 -0300"
      },
      "message": "V4L/DVB (7273): suppress compound statement warning in dvb-bt8xx.c\n\nPrevailing kernel style seems to prefer always using braces\nfor do {} while ().\n\nAdd braces to dprintk to suppress the sparse warnings:\ndrivers/media/dvb/bt8xx/dvb-bt8xx.c:73:2: warning: do-while statement is not a compound statement\ndrivers/media/dvb/bt8xx/dvb-bt8xx.c:93:2: warning: do-while statement is not a compound statement\ndrivers/media/dvb/bt8xx/dvb-bt8xx.c:529:2: warning: do-while statement is not a compound statement\ndrivers/media/dvb/bt8xx/dvb-bt8xx.c:614:4: warning: do-while statement is not a compound statement\ndrivers/media/dvb/bt8xx/dvb-bt8xx.c:629:4: warning: do-while statement is not a compound statement\ndrivers/media/dvb/bt8xx/dvb-bt8xx.c:639:4: warning: do-while statement is not a compound statement\ndrivers/media/dvb/bt8xx/dvb-bt8xx.c:883:2: warning: do-while statement is not a compound statement\ndrivers/media/dvb/bt8xx/dvb-bt8xx.c:917:2: warning: do-while statement is not a compound statement\n\nSigned-off-by: Harvey Harrison \u003charvey.harrison@gmail.com\u003e\nSigned-off-by: Manu Abraham \u003cmanu@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    },
    {
      "commit": "446018d80736ab16a117ce0db5a20467c91a0f90",
      "tree": "e9efa80c52112ab30d5f159eb722b6531636266d",
      "parents": [
        "1fe8736955515f5075bef05c366b2d145d29cd44"
      ],
      "author": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Tue Apr 22 14:45:20 2008 -0300"
      },
      "committer": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@infradead.org",
        "time": "Thu Apr 24 14:07:45 2008 -0300"
      },
      "message": "V4L/DVB (7261): Use the same callback argument as xc3028 and xc5000\n\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@infradead.org\u003e\n"
    }
  ],
  "next": "4b1431ca1c98e26569c9b6cd6d06265cef9495ec"
}
