From patchwork Fri May 8 19:51:39 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Pali_Roh=C3=A1r?= X-Patchwork-Id: 219595 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-10.1 required=3.0 tests=DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, INCLUDES_PATCH, MAILING_LIST_MULTI, SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 03EE8C47257 for ; Fri, 8 May 2020 19:51:52 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id D80C92184D for ; Fri, 8 May 2020 19:51:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1588967511; bh=OVuxbhvIBcgPH7Y4k3MgKcgqbkz0nC6rL/mG3dUjm74=; h=From:To:Cc:Subject:Date:List-ID:From; b=XPGgWIHtWWjswiTupDc+z2ZsRoY67ah0qsE7uXT5HjmwDvzE0a+veKmTmxxtaXfD7 /CTD/edReNsU5asbJacZZCmf8NnrxueiRk5oUK+71xz5VIEqYbNksOPbJOSsE3EUBk q2OR163ejJA3kl9TkuYYI22jti0hwSR+jropQhTw= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727794AbgEHTvu (ORCPT ); Fri, 8 May 2020 15:51:50 -0400 Received: from mail.kernel.org ([198.145.29.99]:59060 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726767AbgEHTvt (ORCPT ); Fri, 8 May 2020 15:51:49 -0400 Received: from pali.im (pali.im [31.31.79.79]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 7A4C221841; Fri, 8 May 2020 19:51:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1588967509; bh=OVuxbhvIBcgPH7Y4k3MgKcgqbkz0nC6rL/mG3dUjm74=; h=From:To:Cc:Subject:Date:From; b=zW7UOjMShQ7VFDxfSzaTkEdRzsFE7ct+vlTB+aXDLItfvmWcphWrIJ6zA4HCOkWr0 WvPIDdW/c3fO/tMBlBcNIED2dpCYmtM3nMNKDhwJ+MPxiAGci+U6lyjuJrThhBJeVq gX2kobL5dy2G4mySR6pCYeMOhzSwZ9JtKnolJoI0= Received: by pali.im (Postfix) id 350837F5; Fri, 8 May 2020 21:51:47 +0200 (CEST) From: =?utf-8?q?Pali_Roh=C3=A1r?= To: Stanislav Yakovlev , Kalle Valo , "David S. Miller" Cc: linux-wireless@vger.kernel.org, netdev@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] ipw2x00: Fix comment for CLOCK_BOOTTIME constant Date: Fri, 8 May 2020 21:51:39 +0200 Message-Id: <20200508195139.20078-1-pali@kernel.org> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Correct name of constant is CLOCK_BOOTTIME and not CLOCK_BOOTIME. Signed-off-by: Pali Rohár --- drivers/net/wireless/intel/ipw2x00/ipw2200.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/wireless/intel/ipw2x00/ipw2200.h b/drivers/net/wireless/intel/ipw2x00/ipw2200.h index 4346520545c4..91864e146761 100644 --- a/drivers/net/wireless/intel/ipw2x00/ipw2200.h +++ b/drivers/net/wireless/intel/ipw2x00/ipw2200.h @@ -1329,7 +1329,7 @@ struct ipw_priv { s8 tx_power; - /* Track time in suspend using CLOCK_BOOTIME */ + /* Track time in suspend using CLOCK_BOOTTIME */ time64_t suspend_at; time64_t suspend_time;