From patchwork Mon Jan 20 15:42:55 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masanari Iida X-Patchwork-Id: 312627 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 800292C00A3 for ; Tue, 21 Jan 2014 02:43:25 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753711AbaATPnI (ORCPT ); Mon, 20 Jan 2014 10:43:08 -0500 Received: from mail-pb0-f51.google.com ([209.85.160.51]:47176 "EHLO mail-pb0-f51.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754124AbaATPnF (ORCPT ); Mon, 20 Jan 2014 10:43:05 -0500 Received: by mail-pb0-f51.google.com with SMTP id un15so3473647pbc.38 for ; Mon, 20 Jan 2014 07:43:04 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=Ncwpuz2a5FqpMMDm1OlYVEjPzM0JzIJqTFTGlHz89Hw=; b=wwQxMVoLm2tEwXmN9RREHh9RjcQSZqaje/yFSLWZ0RE5oRyJT1BDLXsRy1dvv4LCob GjXvQ3DO3ULC13GPdBfNJ0/HGl9j+KVofa4M06/NA6honMu9Y9q2whDDePvB5bL298iV 6Rk4A+yTep7SgeG15VZlx/z6L2N2HQ18mUWMLKhklk6VfMP7QptOQr3Rdnt4u081zOVQ ZgckGta/W/91hScrSFrz3wYRvkvrjHOVZ8fg3snvv6dUFKHSekUn61VYxzGcydKrh2kR fCaVh4yH8kFf+1uk6qBCzaGW+zv9crimR5bv5OcMvlcriU9EiqoH67q2KW2ydi0UE3VK 663Q== X-Received: by 10.66.27.13 with SMTP id p13mr19114328pag.76.1390232583769; Mon, 20 Jan 2014 07:43:03 -0800 (PST) Received: from masabert (i118-21-156-233.s30.a048.ap.plala.or.jp. [118.21.156.233]) by mx.google.com with ESMTPSA id qp15sm4153889pbb.2.2014.01.20.07.43.00 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 20 Jan 2014 07:43:02 -0800 (PST) Received: by masabert (Postfix, from userid 1000) id 7AD736450C; Tue, 21 Jan 2014 00:42:58 +0900 (JST) From: Masanari Iida To: linux-kernel@vger.kernel.org, trivial@kernel.org, bhelgaas@google.com, linux-pci@vger.kernel.org Cc: agordeev@redhat.com, Masanari Iida Subject: [PATCH][trivial] pci: Fix make htmldocs failure caused by msi.c Date: Tue, 21 Jan 2014 00:42:55 +0900 Message-Id: <1390232575-4284-1-git-send-email-standby24x7@gmail.com> X-Mailer: git-send-email 1.9.rc0 Sender: linux-pci-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org An empty line in msi.c caused "make htmldocs" failure. Warning(/home/iida/Repo/linux-next//drivers/pci/msi.c:962): bad line: Remove the empty line fixed the issue. Signed-off-by: Masanari Iida --- drivers/pci/msi.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/pci/msi.c b/drivers/pci/msi.c index 7a0fec6..a9d5176 100644 --- a/drivers/pci/msi.c +++ b/drivers/pci/msi.c @@ -959,7 +959,6 @@ EXPORT_SYMBOL(pci_disable_msi); /** * pci_msix_vec_count - return the number of device's MSI-X table entries * @dev: pointer to the pci_dev data structure of MSI-X device function - * This function returns the number of device's MSI-X table entries and * therefore the number of MSI-X vectors device is capable of sending. * It returns a negative errno if the device is not capable of sending MSI-X