···476476 * o bootmem_init()477477 * o sparse_init()478478 * o paging_init()479479- * o dma_continguous_reserve()479479+ * o dma_contiguous_reserve()480480 *481481 * At this stage the bootmem allocator is ready to use.482482 *
+1-1
drivers/gpio/gpiolib-acpi.c
···6868 * GPIO controller driver.6969 *7070 * Typically the returned offset is same as @pin, but if the GPIO7171- * controller uses pin controller and the mapping is not contigous the7171+ * controller uses pin controller and the mapping is not contiguous the7272 * offset might be different.7373 */7474static int acpi_gpiochip_pin_to_gpio_offset(struct gpio_chip *chip, int pin)
+1-1
drivers/gpu/drm/via/via_dmablit.c
···260260/*261261 * Allocate DMA capable memory for the blit descriptor chain, and an array that keeps track of the262262 * pages we allocate. We don't want to use kmalloc for the descriptor chain because it may be263263- * quite large for some blits, and pages don't need to be contingous.263263+ * quite large for some blits, and pages don't need to be contiguous.264264 */265265266266static int
+1-1
drivers/gpu/drm/vmwgfx/vmwgfx_drv.h
···227227 * device-specific information.228228 *229229 * @sgt: Pointer to a struct sg_table with binding information230230- * @num_regions: Number of regions with device-address contigous pages230230+ * @num_regions: Number of regions with device-address contiguous pages231231 */232232struct vmw_sg_table {233233 enum vmw_dma_map_mode mode;
+1-1
drivers/media/platform/exynos4-is/fimc-m2m.c
···188188 if (IS_ERR(f))189189 return PTR_ERR(f);190190 /*191191- * Return number of non-contigous planes (plane buffers)191191+ * Return number of non-contiguous planes (plane buffers)192192 * depending on the configured color format.193193 */194194 if (!f->fmt)
+1-1
drivers/media/v4l2-core/videobuf2-memops.c
···125125 }126126127127 /*128128- * Memory is contigous, lock vma and return to the caller128128+ * Memory is contiguous, lock vma and return to the caller129129 */130130 *res_vma = vb2_get_vma(vma);131131 if (*res_vma == NULL)
+1-1
drivers/net/ethernet/amd/xgbe/xgbe.h
···140140141141#define XGBE_TX_MAX_BUF_SIZE (0x3fff & ~(64 - 1))142142143143-/* Descriptors required for maximum contigous TSO/GSO packet */143143+/* Descriptors required for maximum contiguous TSO/GSO packet */144144#define XGBE_TX_MAX_SPLIT ((GSO_MAX_SIZE / XGBE_TX_MAX_BUF_SIZE) + 1)145145146146/* Maximum possible descriptors needed for an SKB:
+2-2
drivers/net/wireless/ath/ath6kl/wmi.c
···154154}155155156156/* Performs DIX to 802.3 encapsulation for transmit packets.157157- * Assumes the entire DIX header is contigous and that there is157157+ * Assumes the entire DIX header is contiguous and that there is158158 * enough room in the buffer for a 802.3 mac header and LLC+SNAP headers.159159 */160160int ath6kl_wmi_dix_2_dot3(struct wmi *wmi, struct sk_buff *skb)···449449450450/*451451 * Performs 802.3 to DIX encapsulation for received packets.452452- * Assumes the entire 802.3 header is contigous.452452+ * Assumes the entire 802.3 header is contiguous.453453 */454454int ath6kl_wmi_dot3_2_dix(struct sk_buff *skb)455455{
+1-1
drivers/usb/gadget/udc/bdc/bdc.h
···290290 __le32 offset[4];291291};292292293293-/* bd_table: contigous bd's in a table */293293+/* bd_table: contiguous bd's in a table */294294struct bd_table {295295 struct bdc_bd *start_bd;296296 /* dma address of start bd of table*/
+2-2
fs/ocfs2/ocfs2_fs.h
···168168/* Refcount tree support */169169#define OCFS2_FEATURE_INCOMPAT_REFCOUNT_TREE 0x1000170170171171-/* Discontigous block groups */171171+/* Discontiguous block groups */172172#define OCFS2_FEATURE_INCOMPAT_DISCONTIG_BG 0x2000173173174174/*···939939 /*940940 * Block groups may be discontiguous when941941 * OCFS2_FEATURE_INCOMPAT_DISCONTIG_BG is set.942942- * The extents of a discontigous block group are942942+ * The extents of a discontiguous block group are943943 * stored in bg_list. It is a flat list.944944 * l_tree_depth must always be zero. A945945 * discontiguous group is signified by a non-zero
+1-1
include/media/videobuf-core.h
···3737 *3838 * about the mmap helpers (videobuf_mmap_*):3939 *4040- * The mmaper function allows to map any subset of contingous buffers.4040+ * The mmaper function allows to map any subset of contiguous buffers.4141 * This includes one mmap() call for all buffers (which the original4242 * video4linux API uses) as well as one mmap() for every single buffer4343 * (which v4l2 uses).
+5-5
mm/nommu.c
···324324}325325326326/*327327- * vmalloc - allocate virtually continguos memory327327+ * vmalloc - allocate virtually contiguous memory328328 *329329 * @size: allocation size330330 *331331 * Allocate enough pages to cover @size from the page level332332- * allocator and map them into continguos kernel virtual space.332332+ * allocator and map them into contiguous kernel virtual space.333333 *334334 * For tight control over page level allocator and protection flags335335 * use __vmalloc() instead.···341341EXPORT_SYMBOL(vmalloc);342342343343/*344344- * vzalloc - allocate virtually continguos memory with zero fill344344+ * vzalloc - allocate virtually contiguous memory with zero fill345345 *346346 * @size: allocation size347347 *348348 * Allocate enough pages to cover @size from the page level349349- * allocator and map them into continguos kernel virtual space.349349+ * allocator and map them into contiguous kernel virtual space.350350 * The memory allocated is set to zero.351351 *352352 * For tight control over page level allocator and protection flags···420420 * @size: allocation size421421 *422422 * Allocate enough 32bit PA addressable pages to cover @size from the423423- * page level allocator and map them into continguos kernel virtual space.423423+ * page level allocator and map them into contiguous kernel virtual space.424424 */425425void *vmalloc_32(unsigned long size)426426{