From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from frasgout.his.huawei.com (frasgout.his.huawei.com [185.176.79.56]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id B2C59195F23; Fri, 7 Jun 2024 14:10:56 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=185.176.79.56 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1717769459; cv=none; b=nUVe6uhQoI9HsLOdCwIeLr9R+BEGWVXF2Q/6i/VxpExgV6mZJ2V7N0EBMwkkcemCr5xFuUPNGKXiIVhYwDffT/c3YOjVhJxVSujb7X1BrHkGcoY2kIq2TAZVJKpn9dIlaOn92uf8+ZYQNiwaHudk6lq1mDbW3FzPhpOQRKuGkGs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1717769459; c=relaxed/simple; bh=zpmsM2di5bUt5+fQj1SwbCjgl4GOOzpOzyaBxESgmhI=; h=Date:From:To:CC:Subject:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=TR4ZLE6wvg3vwzhl+R35LwmMJAmt6WpnVjZoZco/G5sM4eWLFx0UqNPAOFabsseCzvQmyCkPhTKahchJY8KXGVTcWsGLuROb3QbmAkWL32sO/xk2a93SCcvz3w+h/TVBw1NPd9X1PL+4wSJFlcmc6amA661tbwXRV264eleRlfU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=Huawei.com; spf=pass smtp.mailfrom=huawei.com; arc=none smtp.client-ip=185.176.79.56 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=Huawei.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=huawei.com Received: from mail.maildlp.com (unknown [172.18.186.216]) by frasgout.his.huawei.com (SkyGuard) with ESMTP id 4Vwjfl42rFz6J9h6; Fri, 7 Jun 2024 22:06:23 +0800 (CST) Received: from lhrpeml500005.china.huawei.com (unknown [7.191.163.240]) by mail.maildlp.com (Postfix) with ESMTPS id C5F9B140CB9; Fri, 7 Jun 2024 22:10:47 +0800 (CST) Received: from localhost (10.202.227.76) by lhrpeml500005.china.huawei.com (7.191.163.240) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.1.2507.39; Fri, 7 Jun 2024 15:10:47 +0100 Date: Fri, 7 Jun 2024 15:10:46 +0100 From: Jonathan Cameron To: Jeff Johnson CC: Davidlohr Bueso , Dave Jiang , Alison Schofield , Vishal Verma , Ira Weiny , Dan Williams , , , Subject: Re: [PATCH v2] cxl: add missing MODULE_DESCRIPTION() macros Message-ID: <20240607151046.00002ae2@Huawei.com> In-Reply-To: <20240607-md-drivers-cxl-v2-1-0c61d95ee7a7@quicinc.com> References: <20240607-md-drivers-cxl-v2-1-0c61d95ee7a7@quicinc.com> Organization: Huawei Technologies Research and Development (UK) Ltd. X-Mailer: Claws Mail 4.1.0 (GTK 3.24.33; x86_64-w64-mingw32) Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-ClientProxiedBy: lhrpeml500002.china.huawei.com (7.191.160.78) To lhrpeml500005.china.huawei.com (7.191.163.240) On Fri, 7 Jun 2024 06:57:15 -0700 Jeff Johnson wrote: > make allmodconfig && make W=1 C=1 reports: > WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/cxl/core/cxl_core.o > WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/cxl/cxl_pci.o > WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/cxl/cxl_mem.o > WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/cxl/cxl_acpi.o > WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/cxl/cxl_pmem.o > WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/cxl/cxl_port.o > > Add the missing invocations of the MODULE_DESCRIPTION() macro. > > Signed-off-by: Jeff Johnson Reviewed-by: Jonathan Cameron Thanks,