From patchwork Fri Jun 14 15:12:33 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Biju Das X-Patchwork-Id: 13698831 X-Patchwork-Delegate: geert@linux-m68k.org Received: from relmlie5.idc.renesas.com (relmlor1.renesas.com [210.160.252.171]) by smtp.subspace.kernel.org (Postfix) with ESMTP id 66A2C1591F8; Fri, 14 Jun 2024 15:12:44 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=210.160.252.171 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1718377968; cv=none; b=s4XBQZeG2ntxyxD3W7aYFO1RizfT+HgcUyYk8QfyfkIL6Pbd0gEhzEjwtxUGiZ2osS2SXiIEpd58i+YQfuI+pqMxfzqXzse/Rlzi1yAAugFKZFN4DnvrAa8ZhwXCiml1+QHOgp5Jlsn5H/0mGolr/VswuE04K2JlFVdP2N5lBCg= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1718377968; c=relaxed/simple; bh=avEZ+q9GkCyZ8CRA8it+z6Wpyg/1LsKNszJVPpwkXi0=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=IDFOJeAVdULlKc2SAJCT7uCDIZIu9mvU5Mmm8wxAF0/6xOgX/BYjDZMyXc06qjImB6ZyA6cOho4boSAhDfI5CUH5kD35oorllD6YYZ+3uJwS+qUKeSWuOFeGEFag6Xw7vuyMEx1Rx542Xjj+MD3RndgYWr737ulPMiaceT0trn0= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=bp.renesas.com; spf=pass smtp.mailfrom=bp.renesas.com; arc=none smtp.client-ip=210.160.252.171 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=bp.renesas.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=bp.renesas.com X-IronPort-AV: E=Sophos;i="6.08,238,1712588400"; d="scan'208";a="207958146" Received: from unknown (HELO relmlir6.idc.renesas.com) ([10.200.68.152]) by relmlie5.idc.renesas.com with ESMTP; 15 Jun 2024 00:12:38 +0900 Received: from localhost.localdomain (unknown [10.226.92.95]) by relmlir6.idc.renesas.com (Postfix) with ESMTP id E300B445EBA3; Sat, 15 Jun 2024 00:12:35 +0900 (JST) From: Biju Das To: =?utf-8?q?Uwe_Kleine-K=C3=B6nig?= Cc: Biju Das , linux-pwm@vger.kernel.org, Geert Uytterhoeven , Prabhakar Mahadev Lad , Biju Das , linux-renesas-soc@vger.kernel.org Subject: [PATCH] pwm: Fix namespace error Date: Fri, 14 Jun 2024 16:12:33 +0100 Message-Id: <20240614151233.398463-1-biju.das.jz@bp.renesas.com> X-Mailer: git-send-email 2.25.1 Precedence: bulk X-Mailing-List: linux-renesas-soc@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Fix namespace error due to typo by replacing USB_STORAGE->PWM. Fixes: aeb9cedc87a2 ("pwm: Make use of a symbol namespace for the core") Signed-off-by: Biju Das --- include/linux/pwm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/pwm.h b/include/linux/pwm.h index c68576067eca..75ad0d2fd949 100644 --- a/include/linux/pwm.h +++ b/include/linux/pwm.h @@ -8,7 +8,7 @@ #include #include -MODULE_IMPORT_NS(USB_STORAGE); +MODULE_IMPORT_NS(PWM); struct pwm_chip;