Re: [linux-usb-devel] Open USB Device

2005-03-12 Thread Jayaprakash Shanmugam
Thanks to Oliver and Shalini for your replies. I did devfs_register in my probe and I was able to open the device. On Sat, 12 Mar 2005 12:26:30 +0530, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Hi Jayaprakash, > > In linux system, USB devices are identified by major number 180, so you > n

RE: [linux-usb-devel] Open USB Device

2005-03-11 Thread rao.shalini
Hi Jayaprakash, In linux system, USB devices are identified by major number 180, so you need to create device node with major no 180 and minor no (mknod usbdrv 180 0) While registering device driver you don't have to give major as such, you need to mention only minor number. All these informatio

Re: [linux-usb-devel] Open USB Device

2005-03-11 Thread Oliver Neukum
Am Freitag, 11. März 2005 21:50 schrieb Jayaprakash Shanmugam: >    I am new to USB world.  I have a basic doubt.  I wrote the USB > driver by going through some tutorials.  I compiled it and inmod it > without any problems.  Now, If I want to use my driver, I need a major > number.  There I got st