<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Kconfig</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>f388f60c - x86/cpu: Drop configuration options for early 64-bit CPUs</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/misc/mei/Kconfig#f388f60c</link>
        <description>x86/cpu: Drop configuration options for early 64-bit CPUsThe x86 CPU selection menu is confusing for a number of reasons:When configuring 32-bit kernels, it shows a small number of early 64-bitmicroarchitectures (K8, Core 2) but not the regular generic 64-bit targetthat is the normal default.  There is no longer a reason to run 32-bitkernels on production 64-bit systems, so only actual 32-bit CPUs needto be shown here.When configuring 64-bit kernels, the options also pointless as there isno way to pick any CPU from the past 15 years, leaving GENERIC_CPU asthe only sensible choice.Address both of the above by removing the obsolete options and makingall 64-bit kernels run on both Intel and AMD CPUs from any generation.Testing generic 32-bit kernels on 64-bit hardware remains possible,just not building a 32-bit kernel that requires a 64-bit CPU.Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Signed-off-by: Ingo Molnar &lt;mingo@kernel.org&gt;Cc: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;Link: https://lore.kernel.org/r/20250226213714.4040853-5-arnd@kernel.org

            List of files:
            /linux-6.15/drivers/misc/mei/Kconfig</description>
        <pubDate>Wed, 26 Feb 2025 21:37:08 +0000</pubDate>
        <dc:creator>Arnd Bergmann &lt;arnd@arndb.de&gt;</dc:creator>
    </item>
<item>
        <title>d667378a - mei: rework Kconfig dependencies</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/misc/mei/Kconfig#d667378a</link>
        <description>mei: rework Kconfig dependenciesThe dependencies in the mei framework are inconsistent, with some symbolsusing &apos;select INTEL_MEI&apos; to force it being enabled and others using&apos;depends on INTEL_MEI&apos;.In general, one should not select user-visible symbols, so change allof these to normal dependencies, but change the default on INTEL_MEI tobe enabled when building a kernel for an Intel CPU with ME or a genericx86 kernel.Having consistent dependencies makes the &apos;menuconfig&apos; listing morereadable by using proper indentation.A large if/endif block is just a simpler syntax than repeating thedependencies for each symbol.Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Reviewed-by: Wentong Wu &lt;wentong.wu@intel.com&gt;Link: https://lore.kernel.org/r/20231214183946.109124-2-arnd@kernel.orgSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/misc/mei/Kconfig</description>
        <pubDate>Thu, 14 Dec 2023 18:39:32 +0000</pubDate>
        <dc:creator>Arnd Bergmann &lt;arnd@arndb.de&gt;</dc:creator>
    </item>
<item>
        <title>95171e45 - mei: fix vsc dependency</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/misc/mei/Kconfig#95171e45</link>
        <description>mei: fix vsc dependencyCONFIG_INTEL_MEI_VSC_HW can be set to built-in even with CONFIG_MEI=m,but then the driver is not built because Kbuild never enters thedrivers/misc/mei directory for built-in files, leading to a linkfailure:ERROR: modpost: &quot;vsc_tp_reset&quot; [drivers/misc/mei/mei-vsc.ko] undefined!ERROR: modpost: &quot;vsc_tp_init&quot; [drivers/misc/mei/mei-vsc.ko] undefined!ERROR: modpost: &quot;vsc_tp_xfer&quot; [drivers/misc/mei/mei-vsc.ko] undefined!ERROR: modpost: &quot;vsc_tp_need_read&quot; [drivers/misc/mei/mei-vsc.ko] undefined!ERROR: modpost: &quot;vsc_tp_intr_enable&quot; [drivers/misc/mei/mei-vsc.ko] undefined!ERROR: modpost: &quot;vsc_tp_intr_synchronize&quot; [drivers/misc/mei/mei-vsc.ko] undefined!ERROR: modpost: &quot;vsc_tp_intr_disable&quot; [drivers/misc/mei/mei-vsc.ko] undefined!ERROR: modpost: &quot;vsc_tp_register_event_cb&quot; [drivers/misc/mei/mei-vsc.ko] undefined!Add an explicit dependency on CONFIG_MEI that was apparently missing,to ensure the VSC_HW driver cannot be built-in with MEI itself beinga loadable module.Fixes: 566f5ca97680 (&quot;mei: Add transport driver for IVSC device&quot;)Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Reviewed-by: Sakari Ailus &lt;sakari.ailus@linux.intel.com&gt;Reviewed-by: Wentong Wu &lt;wentong.wu@intel.com&gt;Link: https://lore.kernel.org/r/20231214183946.109124-1-arnd@kernel.orgSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/misc/mei/Kconfig</description>
        <pubDate>Thu, 14 Dec 2023 18:39:31 +0000</pubDate>
        <dc:creator>Arnd Bergmann &lt;arnd@arndb.de&gt;</dc:creator>
    </item>
<item>
        <title>386a766c - mei: Add MEI hardware support for IVSC device</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/misc/mei/Kconfig#386a766c</link>
        <description>mei: Add MEI hardware support for IVSC deviceThe protocol used for the IVSC device to communicate with HOST is MEI.The MEI hardware interfaces for the IVSC device are implemented.The APIs are exposed by MEI framework to mei clients, e.g. mei_csi andmei_ace.Signed-off-by: Wentong Wu &lt;wentong.wu@intel.com&gt;Reviewed-by: Alexander Usyskin &lt;alexander.usyskin@intel.com&gt;Reviewed-by: Sakari Ailus &lt;sakari.ailus@linux.intel.com&gt;Tested-by: Hao Yao &lt;hao.yao@intel.com&gt;Acked-by: Tomas Winkler &lt;tomas.winkler@intel.com&gt;Link: https://lore.kernel.org/r/1701651344-20723-3-git-send-email-wentong.wu@intel.comSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/misc/mei/Kconfig</description>
        <pubDate>Mon, 04 Dec 2023 00:55:44 +0000</pubDate>
        <dc:creator>Wentong Wu &lt;wentong.wu@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>566f5ca9 - mei: Add transport driver for IVSC device</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/misc/mei/Kconfig#566f5ca9</link>
        <description>mei: Add transport driver for IVSC deviceThe Intel visual sensing controller (IVSC) device is designed to controlthe camera sharing between host IPU for media usage and IVSC for contextsensing (face detection).IVSC is exposed to HOST as an SPI device and the message protocol overthe SPI BUS for communicating with the IVSC device is implemented. Thisis the backend of mei framework for IVSC device, which usually handlesthe hardware data transfer. The mei_csi and mei_ace are the clients ofIVSC mei framework.The firmware downloading for the IVSC device is implemented as well.Signed-off-by: Wentong Wu &lt;wentong.wu@intel.com&gt;Reviewed-by: Sakari Ailus &lt;sakari.ailus@linux.intel.com&gt;Tested-by: Hao Yao &lt;hao.yao@intel.com&gt;Acked-by: Tomas Winkler &lt;tomas.winkler@intel.com&gt;Link: https://lore.kernel.org/r/1701651344-20723-2-git-send-email-wentong.wu@intel.comSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/misc/mei/Kconfig</description>
        <pubDate>Mon, 04 Dec 2023 00:55:43 +0000</pubDate>
        <dc:creator>Wentong Wu &lt;wentong.wu@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>1dd924f6 - mei: gsc_proxy: add gsc proxy driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/misc/mei/Kconfig#1dd924f6</link>
        <description>mei: gsc_proxy: add gsc proxy driverAdd GSC proxy driver. It to allows messaging between GSC componenton Intel graphics card and CSE device.Cc: Alan Previn &lt;alan.previn.teres.alexis@intel.com&gt;Signed-off-by: Alexander Usyskin &lt;alexander.usyskin@intel.com&gt;Signed-off-by: Tomas Winkler &lt;tomas.winkler@intel.com&gt;Signed-off-by: Daniele Ceraolo Spurio &lt;daniele.ceraolospurio@intel.com&gt;Acked-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;Reviewed-by: Alan Previn &lt;alan.previn.teres.alexis@intel.com&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20230502163854.317653-3-daniele.ceraolospurio@intel.com

            List of files:
            /linux-6.15/drivers/misc/mei/Kconfig</description>
        <pubDate>Tue, 02 May 2023 16:38:52 +0000</pubDate>
        <dc:creator>Alexander Usyskin &lt;alexander.usyskin@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>a98c30fd - mei: add support for graphics system controller (gsc) devices</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/misc/mei/Kconfig#a98c30fd</link>
        <description>mei: add support for graphics system controller (gsc) devicesGSC is a graphics system controller, based on CSE, it providesa chassis controller for graphics discrete cards, as well as itsupports media protection on selected devices.mei_gsc binds to a auxiliary devices exposed by Intel discretedriver i915.v2: fix error check in mei_gsc_probev3: update MODULE_LICENSE (&quot;GPL&quot; is preferred over &quot;GPL v2&quot; and they    both map to GPL version 2)Signed-off-by: Alexander Usyskin &lt;alexander.usyskin@intel.com&gt;Signed-off-by: Tomas Winkler &lt;tomas.winkler@intel.com&gt;Reviewed-by: Daniele Ceraolo Spurio &lt;daniele.ceraolospurio@intel.com&gt;Signed-off-by: Daniele Ceraolo Spurio &lt;daniele.ceraolospurio@intel.com&gt;Acked-by: Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt; #v3Link: https://patchwork.freedesktop.org/patch/msgid/20220419193314.526966-3-daniele.ceraolospurio@intel.com

            List of files:
            /linux-6.15/drivers/misc/mei/Kconfig</description>
        <pubDate>Tue, 19 Apr 2022 19:33:09 +0000</pubDate>
        <dc:creator>Tomas Winkler &lt;tomas.winkler@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>c2004ce9 - mei: pxp: export pavp client to me client bus</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/misc/mei/Kconfig#c2004ce9</link>
        <description>mei: pxp: export pavp client to me client busExport PAVP client to work with i915 driver,for binding it uses kernel component framework.v2:drop debug prints, refactor match code to match mei_hdcp (Tomas)Signed-off-by: Vitaly Lubart &lt;vitaly.lubart@intel.com&gt;Signed-off-by: Tomas Winkler &lt;tomas.winkler@intel.com&gt;Signed-off-by: Daniele Ceraolo Spurio &lt;daniele.ceraolospurio@intel.com&gt;Reviewed-by: Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;Signed-off-by: Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20210924191452.1539378-3-alan.previn.teres.alexis@intel.com

            List of files:
            /linux-6.15/drivers/misc/mei/Kconfig</description>
        <pubDate>Fri, 24 Sep 2021 19:14:37 +0000</pubDate>
        <dc:creator>Vitaly Lubart &lt;vitaly.lubart@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>264f53b4 - Revert &quot;mei: virtio: virtualization frontend driver&quot;</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/misc/mei/Kconfig#264f53b4</link>
        <description>Revert &quot;mei: virtio: virtualization frontend driver&quot;This reverts commit d162219c655c8cf8003128a13840d6c1e183fb80.The device uses a VIRTIO device ID out of a not-for-production range.Releasing Linux using an ID out of this range will make it conflict withdevelopment setups. An official request to reserve an ID for an MEIdevice is yet to be submitted to the virtio TC, thus there&apos;s no chanceit will be reserved and fixed in time before the next release.Once requested it usually takes 2-3 weeks to land in the spec, whichmeans the device can be supported with the official ID in the next Linuxversion if contributors act quickly.Signed-off-by: Michael S. Tsirkin &lt;mst@redhat.com&gt;Cc: Tomas Winkler &lt;tomas.winkler@intel.com&gt;Cc: Alexander Usyskin &lt;alexander.usyskin@intel.com&gt;Cc: Wang Yu &lt;yu1.wang@intel.com&gt;Cc: Liu Shuo &lt;shuo.a.liu@intel.com&gt;Link: https://lore.kernel.org/r/20201205193625.469773-1-mst@redhat.comSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/misc/mei/Kconfig</description>
        <pubDate>Sat, 05 Dec 2020 19:38:46 +0000</pubDate>
        <dc:creator>Michael S. Tsirkin &lt;mst@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>d162219c - mei: virtio: virtualization frontend driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/misc/mei/Kconfig#d162219c</link>
        <description>mei: virtio: virtualization frontend driverThis frontend driver implements MEI hw interface based on virtioframework to let MEI driver work without changes under virtualization.It requires a backend service in the ACRN device-model on the serviceOS side to make it work. The backend service will emulate mei routingand assign vtags for each mei vritio device.The backend service is available in ACRN device-model at github.For more information, please refer to https://projectacrn.orgThe ACRN virtio sub device id for MEI is is 0x8602.Signed-off-by: Tomas Winkler &lt;tomas.winkler@intel.com&gt;Signed-off-by: Alexander Usyskin &lt;alexander.usyskin@intel.com&gt;Signed-off-by: Wang Yu &lt;yu1.wang@intel.com&gt;Signed-off-by: Liu Shuo &lt;shuo.a.liu@intel.com&gt;Link: https://lore.kernel.org/r/20200818115147.2567012-14-tomas.winkler@intel.comSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/misc/mei/Kconfig</description>
        <pubDate>Tue, 18 Aug 2020 11:51:47 +0000</pubDate>
        <dc:creator>Tomas Winkler &lt;tomas.winkler@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>74b04fae - mei: Replace HTTP links with HTTPS ones</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/misc/mei/Kconfig#74b04fae</link>
        <description>mei: Replace HTTP links with HTTPS onesRationale:Reduces attack surface on kernel devs opening the links for MITMas HTTPS traffic is much harder to manipulate.Deterministic algorithm:For each file:  If not .svg:    For each line:      If doesn&apos;t contain `\bxmlns\b`:        For each link, `\bhttp://[^# \t\r\n]*(?:\w|/)`:	  If neither `\bgnu\.org/license`, nor `\bmozilla\.org/MPL\b`:            If both the HTTP and HTTPS versions            return 200 OK and serve the same content:              Replace HTTP with HTTPS.Signed-off-by: Alexander A. Klimov &lt;grandmaster@al2klimov.de&gt;Acked-by: Tomas Winkler &lt;tomas.winkler@intel.com&gt;Link: https://lore.kernel.org/r/20200717185925.84102-1-grandmaster@al2klimov.deSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/misc/mei/Kconfig</description>
        <pubDate>Fri, 17 Jul 2020 18:59:25 +0000</pubDate>
        <dc:creator>Alexander A. Klimov &lt;grandmaster@al2klimov.de&gt;</dc:creator>
    </item>
<item>
        <title>d65bf042 - mei: hdcp: use own Kconfig file</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/misc/mei/Kconfig#d65bf042</link>
        <description>mei: hdcp: use own Kconfig fileThe mei/hdcp module have its own Makefileso naturally it should have associated Kconfigin the same directory.Signed-off-by: Tomas Winkler &lt;tomas.winkler@intel.com&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/misc/mei/Kconfig</description>
        <pubDate>Mon, 22 Apr 2019 06:51:06 +0000</pubDate>
        <dc:creator>Tomas Winkler &lt;tomas.winkler@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>1e55b609 - mei: adjust the copyright notice in the files.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/misc/mei/Kconfig#1e55b609</link>
        <description>mei: adjust the copyright notice in the files.Use unified version of the copyright notice in the filesUpdate copyright years according the year the fileswere touched, except this patch and SPDX conversions.Signed-off-by: Tomas Winkler &lt;tomas.winkler@intel.com&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/misc/mei/Kconfig</description>
        <pubDate>Mon, 11 Mar 2019 22:10:44 +0000</pubDate>
        <dc:creator>Tomas Winkler &lt;tomas.winkler@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>3634946f - mei: add missing SPDX tag to mei Kconfig</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/misc/mei/Kconfig#3634946f</link>
        <description>mei: add missing SPDX tag to mei KconfigAdd SPDX tag with GPLv2 license to mei Kconfig.Signed-off-by: Tomas Winkler &lt;tomas.winkler@intel.com&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/misc/mei/Kconfig</description>
        <pubDate>Mon, 11 Mar 2019 22:10:40 +0000</pubDate>
        <dc:creator>Tomas Winkler &lt;tomas.winkler@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>64e9bbdd - misc/mei/hdcp: Client driver for HDCP application</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/misc/mei/Kconfig#64e9bbdd</link>
        <description>misc/mei/hdcp: Client driver for HDCP applicationME FW contributes a vital role in HDCP2.2 authentication.HDCP2.2 driver needs to communicate to ME FW for each step of theHDCP2.2 authentication.ME FW prepare and HDCP2.2 authentication  parameters and encrypt themas per spec. With such parameter Driver prepares HDCP2.2 auth messagesand communicate with HDCP2.2 sink.Similarly HDCP2.2 sink&apos;s response is shared with ME FW for decrypt andverification.Once All the steps of HDCP2.2 authentications are complete on driver&apos;srequest ME FW will configure the port as authenticated and supply theHDCP keys to the Gen HW for encryption.Only after this stage HDCP2.2 driver can start the HDCP2.2 encryptionfor a port.ME FW is interfaced to kernel through MEI Bus Driver. To obtain theHDCP2.2 services from the ME FW through MEI Bus driver MEI ClientDriver is developed.v2:  hdcp files are moved to drivers/misc/mei/hdcp/ [Tomas]v3:  Squashed the Kbuild support [Tomas]  UUID renamed and Module License is modified [Tomas]  drv_data is set to null at remove [Tomas]v4:  Module name is changed to &quot;MEI HDCP&quot;  I915 Selects the MEI_HDCPv5:  Remove redundant text from the License header  Fix malformed licence  Removed the drv_data resetting.v6:  K-Doc addition. [Tomas]v7:  %s/UUID_LE/GUID_INIT [Tomas]  GPL Ver is 2.0 than 2.0+ [Tomas]v8:  Added more info into Kconfig addition [Tomas]Signed-off-by: Ramalingam C &lt;ramalingam.c@intel.com&gt;Signed-off-by: Tomas Winkler &lt;tomas.winkler@intel.com&gt;Acked-by: Tomas Winkler &lt;tomas.winkler@intel.com&gt;Signed-off-by: Daniel Vetter &lt;daniel.vetter@ffwll.ch&gt;Link: https://patchwork.freedesktop.org/patch/msgid/1550772730-23280-3-git-send-email-ramalingam.c@intel.com

            List of files:
            /linux-6.15/drivers/misc/mei/Kconfig</description>
        <pubDate>Thu, 21 Feb 2019 18:11:56 +0000</pubDate>
        <dc:creator>Ramalingam C &lt;ramalingam.c@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>fdd9b865 - mei: wd: drop the watchdog code from the core mei driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/misc/mei/Kconfig#fdd9b865</link>
        <description>mei: wd: drop the watchdog code from the core mei driverInstead of integrating the iAMT watchdog in the mei core driverwe will create a watchdog device on the mei client bus andcreate a driver for it.This patch removes the watchdog code from the mei core driver.Signed-off-by: Alexander Usyskin &lt;alexander.usyskin@intel.com&gt;Signed-off-by: Tomas Winkler &lt;tomas.winkler@intel.com&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/misc/mei/Kconfig</description>
        <pubDate>Thu, 07 Jan 2016 22:49:21 +0000</pubDate>
        <dc:creator>Alexander Usyskin &lt;alexander.usyskin@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>208008c3 - mei: fix compilation error with missing WATCHDOG_CORE</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/misc/mei/Kconfig#208008c3</link>
        <description>mei: fix compilation error with missing WATCHDOG_COREKconfig is not transitive so INTEL_ME_TXE has to dependon WATCHDOG_CORE as wellERROR: &quot;watchdog_unregister_device&quot; [drivers/misc/mei/mei.ko] undefined!ERROR: &quot;watchdog_register_device&quot; [drivers/misc/mei/mei.ko] undefined!Reported-by: Fengguang Wu &lt;fengguang.wu@intel.com&gt;Signed-off-by: Tomas Winkler &lt;tomas.winkler@intel.com&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/misc/mei/Kconfig</description>
        <pubDate>Mon, 10 Feb 2014 12:33:53 +0000</pubDate>
        <dc:creator>Tomas Winkler &lt;tomas.winkler@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>92ab5130 - mei: txe: add Kbuild for TXE device</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/misc/mei/Kconfig#92ab5130</link>
        <description>mei: txe: add Kbuild for TXE deviceSigned-off-by: Tomas Winkler &lt;tomas.winkler@intel.com&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/misc/mei/Kconfig</description>
        <pubDate>Wed, 15 Jan 2014 22:58:36 +0000</pubDate>
        <dc:creator>Tomas Winkler &lt;tomas.winkler@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>40e0b67b - mei: move mei-me to separate module</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/misc/mei/Kconfig#40e0b67b</link>
        <description>mei: move mei-me to separate modulemei layer provides host bus message layer, client management,and os interfacemei-me - provides access to ME hardware throughthe pci busSigned-off-by: Tomas Winkler &lt;tomas.winkler@intel.com&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/misc/mei/Kconfig</description>
        <pubDate>Wed, 27 Mar 2013 14:58:30 +0000</pubDate>
        <dc:creator>Tomas Winkler &lt;tomas.winkler@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>b95d788a - mei: fix undefined wd symbols when MEI_ME is not set</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/misc/mei/Kconfig#b95d788a</link>
        <description>mei: fix undefined wd symbols when MEI_ME is not setCurrently watchdog client is compiled with MEI and notwith MEI_MEFixes error:When CONFIG_WATCHDOG is not enabled:ERROR: &quot;watchdog_unregister_device&quot; [drivers/misc/mei/mei.ko] undefined!ERROR: &quot;watchdog_register_device&quot; [drivers/misc/mei/mei.ko] undefinedReported-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;Signed-off-by: Tomas Winkler &lt;tomas.winkler@intel.com&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/misc/mei/Kconfig</description>
        <pubDate>Thu, 07 Feb 2013 20:27:18 +0000</pubDate>
        <dc:creator>Tomas Winkler &lt;tomas.winkler@intel.com&gt;</dc:creator>
    </item>
</channel>
</rss>
