From patchwork Mon Sep 3 19:51:59 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 10586343 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 6955F14BD for ; Mon, 3 Sep 2018 19:52:11 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 4907F29254 for ; Mon, 3 Sep 2018 19:52:11 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 3A26829265; Mon, 3 Sep 2018 19:52:11 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI,T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id CB7D729254 for ; Mon, 3 Sep 2018 19:52:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728471AbeIDANv (ORCPT ); Mon, 3 Sep 2018 20:13:51 -0400 Received: from merlin.infradead.org ([205.233.59.134]:41936 "EHLO merlin.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728445AbeIDANv (ORCPT ); Mon, 3 Sep 2018 20:13:51 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=merlin.20170209; h=Content-Transfer-Encoding:Content-Type: MIME-Version:Date:Message-ID:Subject:From:Cc:To:Sender:Reply-To:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=kkQDTDh2R9Jp2Dqhvu4mbr66XQM0WL6IxjBpzmZ4b4k=; b=kv8iCY/uliAJrd/oFK62Gh+/bR lOiD5gN9Lo9I7Ez0YWodbXxYN28DPxoml1ulxIgHN/haurbpks62vBUxZ4XwZM6+xSyXGJeG94CLJ qhDV0NICpHhilEPz/dUxBa3CHWRtBhO/eYrmdngL4zAPLe09ugdr49JkvhhkSsWPQoXs7cEWhF6P4 y1DONp8mKrVMWqIC+LGgIO1WT8AW6hMzxcbn0tbt/mJ78d44Xmu0opx96YWgl7shOpGevXTGZvkQE 6PEwv17+q2AMPTz7ZRiiCiAJg7hTHxXI8XOSfbja/UNexLg+2+Nn19j8IOMJ6CvukWgQYdrL0BTc2 8y+N/82w==; Received: from static-50-53-52-16.bvtn.or.frontiernet.net ([50.53.52.16] helo=midway.dunlab) by merlin.infradead.org with esmtpsa (Exim 4.90_1 #2 (Red Hat Linux)) id 1fwutK-0001yT-9X; Mon, 03 Sep 2018 19:52:06 +0000 To: LKML , USB list , Greg Kroah-Hartman Cc: Heikki Krogerus From: Randy Dunlap Subject: [PATCH] linux/mod_devicetable.h: fix kernel-doc missing notation for typec_device_id Message-ID: Date: Mon, 3 Sep 2018 12:51:59 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.9.1 MIME-Version: 1.0 Content-Language: en-US Sender: linux-usb-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-usb@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Randy Dunlap Fix kernel-doc warning for missing struct member description: ../include/linux/mod_devicetable.h:763: warning: Function parameter or member 'driver_data' not described in 'typec_device_id' Fixes: 8a37d87d72f0c ("usb: typec: Bus type for alternate modes") Signed-off-by: Randy Dunlap Cc: Heikki Krogerus Reviewed-by: Heikki Krogerus --- include/linux/mod_devicetable.h | 1 + 1 file changed, 1 insertion(+) --- lnx-419-rc2.orig/include/linux/mod_devicetable.h +++ lnx-419-rc2/include/linux/mod_devicetable.h @@ -754,6 +754,7 @@ struct tb_service_id { * struct typec_device_id - USB Type-C alternate mode identifiers * @svid: Standard or Vendor ID * @mode: Mode index + * @driver_data: Driver specific data */ struct typec_device_id { __u16 svid;