don't have the "normal" Linux kernel quality level.
          Most of them don't follow properly the V4L, DVB and/or RC API's,
          so, they won't likely work fine with the existing applications.
-         That also means that, one fixed, their API's will change to match
+         That also means that, once fixed, their API's will change to match
          the existing ones.
 
           If you wish to work on these drivers, to help improve them, or
 
 #include <linux/uaccess.h>
 #include <linux/usb.h>
 
-/* header file for Usb device driver*/
+/* header file for usb device driver*/
 #include "as102_drv.h"
 #include "as102_fw.h"
 #include "dvbdev.h"
 
        strncpy(dvb_fe->ops.info.name, as102_dev->name,
                sizeof(dvb_fe->ops.info.name));
 
-       /* register dbvb frontend */
+       /* register dvb frontend */
        errno = dvb_register_frontend(dvb_adap, dvb_fe);
        if (errno == 0)
                dvb_fe->tuner_priv = as102_dev;
                                         struct as10x_tps *as10x_tps)
 {
 
-       /* extract consteallation */
+       /* extract constellation */
        switch (as10x_tps->modulation) {
        case CONST_QPSK:
                fe_tps->modulation = QPSK;
 
        return 0;
 }
 
-/* VIDIOC_ENUMSTD on go7007 were used for enumberating the supported fps and
+/* VIDIOC_ENUMSTD on go7007 were used for enumerating the supported fps and
    its resolution, when the device is not connected to TV.
-   This were an API abuse, probably used by the lack of specific IOCTL's to
-   enumberate it, by the time the driver were written.
+   This is were an API abuse, probably used by the lack of specific IOCTL's to
+   enumerate it, by the time the driver was written.
 
    However, since kernel 2.6.19, two new ioctls (VIDIOC_ENUM_FRAMEINTERVALS
    and VIDIOC_ENUM_FRAMESIZES) were added for this purpose.
 
-   The two functions bellow implements the newer ioctls
+   The two functions below implement the newer ioctls
 */
 static int vidioc_enum_framesizes(struct file *filp, void *priv,
                                  struct v4l2_frmsizeenum *fsize)
 
 /*
  * some architectures (e.g. intel xscale) align the 8bit serial registers
  * on 32bit word boundaries.
- * See linux-kernel/serial/8250.c serial_in()/out()
+ * See linux-kernel/drivers/tty/serial/8250/8250.c serial_in()/out()
  */
 module_param(ioshift, int, S_IRUGO);
 MODULE_PARM_DESC(ioshift, "shift I/O register offset (0 = no shift)");
 
        select SND_PCM
        ---help---
          This driver supports the Softlogic based MPEG-4 and h.264 codec
-         codec cards.
+         cards.