From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from msg-2.mailo.com (msg-2.mailo.com [213.182.54.12]) (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 D64458C17 for ; Tue, 8 Nov 2022 17:37:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=mailo.com; s=mailo; t=1667929048; bh=Q1+7UmqKBu+Y+X7DFQZw3y1YtFosOJkcKhbS2OpqI38=; h=X-EA-Auth:Date:From:To:Cc:Subject:Message-ID:References: MIME-Version:Content-Type:In-Reply-To; b=Jhy2bw8hxW6RrxZj1NGtQ2NsA7J/qKV1L1LXHW3ssLg3Uqxftww2XWWiRd+qDv08v o4MkgY+2NdYODWIlstVBDveNgcw478oXS5BNEwKxTH3Vnv5s/IBYjq2e1FCcJKpQyT UBt9vwFQFMPBLRkRWi7tmtIzCXdx4KMMGTIpER5U= Received: by b-3.in.mailobj.net [192.168.90.13] with ESMTP via ip-206.mailobj.net [213.182.55.206] Tue, 8 Nov 2022 18:37:28 +0100 (CET) X-EA-Auth: 2jlnkKun69RFoBqslVp9cVErIP+oD3aiqt0KNyu8yB4BP9nE7nAw/ipHx31HlDL3SrScidGnsX+ZGsSPuBXx6R148nTAceWX Date: Tue, 8 Nov 2022 23:07:23 +0530 From: Deepak R Varma To: Greg Kroah-Hartman Cc: linux-staging@lists.linux.dev, linux-kernel@vger.kernel.org Subject: Re: staging/wlan-ng query: convert to flexible array member Message-ID: References: Precedence: bulk X-Mailing-List: linux-staging@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: On Tue, Nov 08, 2022 at 04:52:44PM +0100, Greg Kroah-Hartman wrote: > On Tue, Nov 08, 2022 at 09:15:10PM +0530, Deepak R Varma wrote: > > On Tue, Nov 08, 2022 at 04:34:15PM +0100, Greg Kroah-Hartman wrote: > > MODPOST drivers/staging/wlan-ng/Module.symvers > > LD [M] drivers/staging/wlan-ng/prism2_usb.ko > > BTF [M] drivers/staging/wlan-ng/prism2_usb.ko > > drv@qemulion:~/git/kernels/staging$ > > > > > > Test the device to make sure it still works? I was able to build and load the driver on my machine. I do not have p54 device to test. Is there another way to test it? Some sort of a udev program??? static struct usb_driver prism2_usb_driver = { - .name = "prism2_usb", + .name = "prism2_usb_dvk", .probe = prism2sta_probe_usb, .disconnect = prism2sta_disconnect_usb, .id_table = usb_prism_tbl, drv@qemulion:~/git/kernels/staging$ sudo dmesg [ 948.476144] prism2_usb: module is from the staging directory, the quality is unknown, you have been warned. [ 948.478631] usbcore: registered new interface driver prism2_usb_dvk Thank you, ./drv >