From patchwork Thu Feb 20 08:00:32 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Lad, Prabhakar" X-Patchwork-Id: 3685021 Return-Path: X-Original-To: patchwork-linux-pm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id A4651BF13A for ; Thu, 20 Feb 2014 08:00:45 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id DBABD201B6 for ; Thu, 20 Feb 2014 08:00:44 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 082D32017B for ; Thu, 20 Feb 2014 08:00:44 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752945AbaBTIAn (ORCPT ); Thu, 20 Feb 2014 03:00:43 -0500 Received: from mail-pa0-f41.google.com ([209.85.220.41]:62949 "EHLO mail-pa0-f41.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752208AbaBTIAm (ORCPT ); Thu, 20 Feb 2014 03:00:42 -0500 Received: by mail-pa0-f41.google.com with SMTP id fa1so1591216pad.0 for ; Thu, 20 Feb 2014 00:00:42 -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=mYWVoFxMlaNizmUs8AmZ9L55ktLAv3Uia9y1ittjZ5w=; b=0M2hPbj6CjCjUBzwBLCT/hDJ6VHelXFSkkiYGxVempaicvmKAe1VpOUK4rMKZsIQZ/ mB0nx/oCS8DPL9wf68GPpNWUznP5bGcHaBIpJxIuQDw+1/elbvJW38odU1li1WrRv2lY +LBgxBg5DIAiH9d6es6GW9I//YTVlicRm9PkX8BzT5YLgGekgoClujnbVF4z2Izzz/a8 6EIAQBXvD15XaVrXqwt+uBFKVgx89KkGx/CNfmi+STaQujiVWqDpmkaIdRtt6QQUlGO6 no17K7FuNHb/N1jBZQ9QEE6Hu5c0ySaRh7f+3nkeRGSgAhquwYUtTv08dwLxXT8dLl5A eLXg== X-Received: by 10.68.223.9 with SMTP id qq9mr524159pbc.58.1392883242287; Thu, 20 Feb 2014 00:00:42 -0800 (PST) Received: from tango-charlie.vayavyatech.com ([122.166.13.141]) by mx.google.com with ESMTPSA id nv7sm8121250pbc.31.2014.02.20.00.00.37 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 20 Feb 2014 00:00:41 -0800 (PST) From: Prabhakar Lad To: Len Brown , Pavel Machek , "Rafael J. Wysocki" Cc: linux-pm@vger.kernel.org, "Lad, Prabhakar" Subject: [PATCH] PM: fix typo Date: Thu, 20 Feb 2014 13:30:32 +0530 Message-Id: <1392883232-24738-1-git-send-email-prabhakar.csengg@gmail.com> X-Mailer: git-send-email 1.7.9.5 Sender: linux-pm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pm@vger.kernel.org X-Spam-Status: No, score=-7.4 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, T_DKIM_INVALID, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: "Lad, Prabhakar" Signed-off-by: Lad, Prabhakar Acked-by: Pavel Machek --- include/linux/pm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/pm.h b/include/linux/pm.h index 8c6583a..b051ba9 100644 --- a/include/linux/pm.h +++ b/include/linux/pm.h @@ -352,7 +352,7 @@ const struct dev_pm_ops name = { \ /* * Use this for defining a set of PM operations to be used in all situations - * (sustem suspend, hibernation or runtime PM). + * (system suspend, hibernation or runtime PM). * NOTE: In general, system suspend callbacks, .suspend() and .resume(), should * be different from the corresponding runtime PM callbacks, .runtime_suspend(), * and .runtime_resume(), because .runtime_suspend() always works on an already