From patchwork Thu Dec 4 22:05:39 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Seth Forshee X-Patchwork-Id: 417936 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from huckleberry.canonical.com (huckleberry.canonical.com [91.189.94.19]) by ozlabs.org (Postfix) with ESMTP id 48DFB1400E9; Fri, 5 Dec 2014 09:06:17 +1100 (AEDT) Received: from localhost ([127.0.0.1] helo=huckleberry.canonical.com) by huckleberry.canonical.com with esmtp (Exim 4.76) (envelope-from ) id 1XweXM-0006oP-TN; Thu, 04 Dec 2014 22:06:12 +0000 Received: from mail-oi0-f49.google.com ([209.85.218.49]) by huckleberry.canonical.com with esmtp (Exim 4.76) (envelope-from ) id 1XweXF-0006nS-Jj for kernel-team@lists.ubuntu.com; Thu, 04 Dec 2014 22:06:05 +0000 Received: by mail-oi0-f49.google.com with SMTP id i138so12940442oig.36 for ; Thu, 04 Dec 2014 14:06:05 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id:in-reply-to :references; bh=wwVN5TjWJjXPACZ7JnZOpAznVYlWauxQwe50HZvpsjU=; b=c6pc1Kc2h+ylJIiBKVoLl0WB+wxEAA8LFB0M3xtAKZ7iutTcTbww2aAtechjqAYqh4 IDfwssk2DarFiGOmhjzbKHOxaiDQFcZGT9/Jr/UuNFjuJwe7YciFwIFP9wpZDLHorOvq 8rRPt2dbFAthec6V3maEQx8Ank9N1QsWkEQeE1cpLa61IZg/XLsq9nkuKC7fNyXXN++y wnDMv1mk5phOQX6/DSY9U8LOUGTxHfIHCMuZVlHupt1BuMIGVP5qRAjiVnVqoYcSrAuU acvNeXLL0d6T0+RgGk4cG7pmHFTZrmW9Tz+wSRJLaLM6HLc7aPzc45yqHqrjE45cuW2V f6/w== X-Gm-Message-State: ALoCoQnf+W0n33oVYN5pSZjp0FmWjxH7dKs2BUg7LLpiiSUOGkxeR6SMIMOhn0MKQxso5ptrA5J3 X-Received: by 10.60.50.137 with SMTP id c9mr8241155oeo.83.1417730765106; Thu, 04 Dec 2014 14:06:05 -0800 (PST) Received: from localhost (199-87-125-144.dyn.kc.surewest.net. [199.87.125.144]) by mx.google.com with ESMTPSA id no6sm13377308obb.6.2014.12.04.14.06.04 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Thu, 04 Dec 2014 14:06:04 -0800 (PST) From: Seth Forshee To: kernel-team@lists.ubuntu.com Subject: [PATCH 4/7][utopic SRU] iwlwifi: remove wrong comment about alignment in iwl-fw-error-dump.h Date: Thu, 4 Dec 2014 16:05:39 -0600 Message-Id: <1417730742-38020-5-git-send-email-seth.forshee@canonical.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1417730742-38020-1-git-send-email-seth.forshee@canonical.com> References: <1417730742-38020-1-git-send-email-seth.forshee@canonical.com> X-BeenThere: kernel-team@lists.ubuntu.com X-Mailman-Version: 2.1.14 Precedence: list List-Id: Kernel team discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: kernel-team-bounces@lists.ubuntu.com Sender: kernel-team-bounces@lists.ubuntu.com From: Emmanuel Grumbach commit d4849277f92a0bfa08a988545ea527fc8e0c9571 upstream. The chunks of data do not need to be multipliers of 4 nor 4-bytes aligned. Signed-off-by: Emmanuel Grumbach BugLink: http://bugs.launchpad.net/bugs/1399440 Signed-off-by: Seth Forshee --- drivers/net/wireless/iwlwifi/iwl-fw-error-dump.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/wireless/iwlwifi/iwl-fw-error-dump.h b/drivers/net/wireless/iwlwifi/iwl-fw-error-dump.h index ced5ba9..9fd860f 100644 --- a/drivers/net/wireless/iwlwifi/iwl-fw-error-dump.h +++ b/drivers/net/wireless/iwlwifi/iwl-fw-error-dump.h @@ -92,8 +92,8 @@ enum iwl_fw_error_dump_type { /** * struct iwl_fw_error_dump_data - data for one type * @type: %enum iwl_fw_error_dump_type - * @len: the length starting from %data - must be a multiplier of 4. - * @data: the data itself padded to be a multiplier of 4. + * @len: the length starting from %data + * @data: the data itself */ struct iwl_fw_error_dump_data { __le32 type;